feat(nvim): add vue component template

This commit is contained in:
Sergio Laín 2024-01-13 17:38:56 +01:00
parent 42cd674ec9
commit 12a5f69ab9
No known key found for this signature in database
GPG key ID: 14C9B8080681777B
3 changed files with 16 additions and 0 deletions

View file

@ -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",

View file

@ -15,6 +15,7 @@ return {
"python", "python",
"lua", "lua",
"html", "html",
"vue",
}, },
}, },
} }

View file

@ -0,0 +1,14 @@
<template>
<div></div>
</template>
<script>
export default {
name: "${filename}",
setup() {
return {};
},
};
</script>
<style lang="scss" scoped></style>