Skip to content

Update vue.json #118

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update vue.json
Adding a Vue base template with scss
  • Loading branch information
leandrocaprara authored Jan 25, 2023
commit 1a8783ee566c8f79835723801850e0c45d9a2a0c
26 changes: 26 additions & 0 deletions snippets/vue.json
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,32 @@
],
"description": "Base for Vue File Composition API - Typescript"
},
"Vue Single File Component Composition API with Typescript and SCSS": {
"prefix": "vbase-3-ts-scss",
"body": [
"<template>",
"\t<div>",
"",
"\t</div>",
"</template>",
"",
"<script lang=\"ts\">",
"import { defineComponent } from 'vue'",
"",
"export default defineComponent({",
"\tsetup () {",
"\t\t${0}\n",
"\t\treturn {}",
"\t}",
"})",
"</script>",
"",
"<style lang=\"scss\" scoped>",
"",
"</style>"
],
"description": "Base for Vue File Composition API - Typescript"
},
"Vue Single File Component Setup Composition API with Typescript": {
"prefix": "vbase-3-ts-setup",
"body": [
Expand Down