19 lines
325 B
Vue
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>
|