Files
uniapp-im-shop/pages/index/index.vue
2026-02-03 00:45:33 +08:00

19 lines
325 B
Vue

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