This commit is contained in:
2023-08-30 06:09:15 +08:00
commit 90225f68e0
31 changed files with 14842 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
export default definePageConfig({
navigationBarTitleText: '首页'
})

View File

20
src/pages/index/index.vue Normal file
View File

@@ -0,0 +1,20 @@
<template>
<view class="index">
<text>{{ msg }}</text>
</view>
</template>
<script>
import { ref } from "vue";
import "./index.scss";
export default {
setup() {
const msg = ref("Hello world");
return {
msg,
};
},
};
</script>