17 lines
272 B
Vue
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>
|