init: basic structure

This commit is contained in:
YunYouJun
2022-04-13 22:41:22 +08:00
parent f77549b1cd
commit c355d51874
50 changed files with 7682 additions and 0 deletions

15
src/App.vue Normal file
View File

@@ -0,0 +1,15 @@
<script setup lang="ts">
// https://github.com/vueuse/head
// you can use this to manipulate the document head in any components,
// they will be rendered correctly in the html results with vite-ssg
useHead({
title: '好的,今天我们来做菜!',
meta: [
{ name: 'description', content: '好的,今天我们来做菜!' },
],
})
</script>
<template>
<RouterView />
</template>