Added my snippets and current settings on Linux

This commit is contained in:
2021-06-22 08:51:26 -06:00
commit 51bd3c9c6e
13 changed files with 569 additions and 0 deletions

View File

@ -0,0 +1,36 @@
<snippet>
<content><![CDATA[
<template>
<div class="v-root"></div>
</template>
<script>
// imports go here
export default {
name: '${1}',
props: {},
data () {
return {}
},
computed: {},
mounted () {},
methods: {},
}
</script>
<style lang="scss" scoped>
</style>
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>vcomp</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<!-- <scope>text.html.vue</scope> -->
</snippet>