Files
uniapp-im-shop/pages/index/index.vue
2026-02-04 20:05:32 +08:00

17 lines
272 B
Vue

<script setup>
import { ref } from 'vue'
const title = ref('这个是启动页')
</script>
<template>
<view class="content">{{ title }}</view>
</template>
<style lang="scss" scoped>
.content {
background: rgb(136, 135, 135);
height: 100vh;
}
</style>