Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

Clara Sista Widhiastuti / PraRegistrasi

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • PraRegistrasi
  • .vscode
  • vue-ts.code-snippets
  • Nabiilah Putri Safa's avatar
    create prareg form · 0913acd2
    Nabiilah Putri Safa committed Feb 23, 2025
    0913acd2 Browse Directory
vue-ts.code-snippets 423 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
{
    "Vue TS - DefineProps": {
        "prefix": "dprops",
        "body": [
            "defineProps<${1:Props}>()"
        ],
        "description": "DefineProps in script setup"
    },
    "Vue TS - Props interface": {
        "prefix": "iprops",
        "body": [
            "interface Props {",
            "  ${1}",
            "}"
        ],
        "description": "Create props interface in script setup"
    }
}