Created
June 14, 2019 07:21
-
-
Save uguisu-an/3e94c464db3110b6dfb1e6fc0ede3337 to your computer and use it in GitHub Desktop.
vue + typescriptの初期化スニペット(Visual Studio Code)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Scaffolding typescript": { | |
"prefix": "typescript scaffold", | |
"body": [ | |
"<script lang=\"ts\">", | |
"import { Prop, Component, Vue } from \"vue-property-decorator\";", | |
"", | |
"@Component", | |
"export default class $TM_FILENAME_BASE extends Vue {", | |
" $0", | |
"}", | |
"</script>" | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment