package list from viandwi24

This commit is contained in:
Kar
2023-04-28 09:58:09 +05:30
commit 4125135289
108 changed files with 27411 additions and 0 deletions

31
.vscode/vue.code-snippets vendored Normal file
View File

@@ -0,0 +1,31 @@
{
"Generate Nuxt 3 Page": {
"prefix": "n3:page",
"body": [
"<script lang=\"ts\" setup>",
"// compiler macro",
"definePageMeta({",
" layout: 'page',",
"})",
"useHead(() => ({",
" title: ${1:${PAGE_TITLE}},",
"}))",
"</script>",
"",
"<template>",
" <PageWrapper>",
" <PageHeader>",
" <PageTitle text=\"${1:${PAGE_TITLE}}\" class=\"capitalize\" />",
" </PageHeader>",
" <PageBody>",
" <PageSection>",
" <div>${2:${PAGE_BODY}}</div>",
" </PageSection>",
" </PageBody>",
" </PageWrapper>",
"</template>",
""
],
"description": "Generate Nuxt 3 Page"
}
}