<template>
<view class="content">
<image class="logo" src="/static/logo.png"></image>
<view class="text-area">
<text class="title">{{title}}</text>
</view>
</view>
</template>
<script setup lang="ts">
import { ref, onMounted } from 'vue'
const title = ref('hello')
onMounted(() => {
title.value = title.value ?? 'hello2'
})
</script>
<style>
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.logo {
height: 200rpx;
width: 200rpx;
margin-top: 200rpx;
margin-left: auto;
margin-right: auto;
margin-bottom: 50rpx;
}
.text-area {
display: flex;
justify-content: center;
}
.title {
font-size: 36rpx;
color: #8f8f94;
}
</style>
- 发布:2023-03-13 13:57
- 更新:2023-03-13 17:07
- 阅读:365
产品分类: uniapp/App
PC开发环境操作系统: Mac
PC开发环境操作系统版本号: 12.5 (21G72)
手机系统: iOS
手机系统版本号: iOS 16
手机厂商: 苹果
手机机型: iphone12/13
页面类型: vue
vue版本: vue3
打包方式: 云端
项目创建方式: CLI
CLI版本号: 3.7.3
示例代码:
操作步骤:
如上代码
如上代码
预期结果:
正常debug
正常debug
实际结果:
报错
报错
我愿你知道
版本支持我都懂,请问为什么HX3.6.18就能正常运行呢
2023-06-19 13:39