init commit

This commit is contained in:
lb
2023-05-06 15:55:27 +08:00
commit bf70872359
26 changed files with 6048 additions and 0 deletions

18
src/views/HomeView.vue Normal file
View File

@@ -0,0 +1,18 @@
<template>
<div class="home-view">home view</div>
</template>
<script>
export default {
name: "HomeView",
props: {},
data() {
return {};
},
created() {},
mounted() {},
methods: {},
};
</script>
<style scoped></style>