✨ feat(nvim): add vue component template
This commit is contained in:
parent
42cd674ec9
commit
12a5f69ab9
3 changed files with 16 additions and 0 deletions
|
@ -80,6 +80,7 @@
|
||||||
"plugins.extras.util.bigfile",
|
"plugins.extras.util.bigfile",
|
||||||
"plugins.extras.util.discordrcp",
|
"plugins.extras.util.discordrcp",
|
||||||
"plugins.extras.util.dot-extended",
|
"plugins.extras.util.dot-extended",
|
||||||
|
"plugins.extras.util.esqueleto",
|
||||||
"plugins.extras.util.icon-picker",
|
"plugins.extras.util.icon-picker",
|
||||||
"plugins.extras.util.kitty-scrollback",
|
"plugins.extras.util.kitty-scrollback",
|
||||||
"plugins.extras.util.smart-splits",
|
"plugins.extras.util.smart-splits",
|
||||||
|
|
|
@ -15,6 +15,7 @@ return {
|
||||||
"python",
|
"python",
|
||||||
"lua",
|
"lua",
|
||||||
"html",
|
"html",
|
||||||
|
"vue",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
14
.config/nvim/templates/vue/component.vue
Normal file
14
.config/nvim/templates/vue/component.vue
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
<template>
|
||||||
|
<div></div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: "${filename}",
|
||||||
|
setup() {
|
||||||
|
return {};
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped></style>
|
Loading…
Add table
Reference in a new issue