Initial commit

This commit is contained in:
juluo
2025-10-08 14:48:45 +08:00
committed by GitHub
commit 8b93d6f42f
108 changed files with 27618 additions and 0 deletions

5
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,5 @@
{
"i18n-ally.localesPaths": [
"src/locales"
]
}

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

@@ -0,0 +1,19 @@
{
"Init vue components": {
"scope": "vue",
"prefix": "vue",
"body": [
"<template lang=\"pug\">",
"$0",
"</template>",
"",
"<script setup lang=\"ts\">",
"import {} from 'vue'",
"",
"</script>",
"",
"<style scoped lang=\"sass\"></style>"
],
"description": "Init vue components"
}
}