安装 ui uni-app官网 (dcloud.net.cn)
安装 pages.js配置
使用
<template>
<view class="bg">
<div class="title">
<uni-data-select
v-model="value"
:localdata="range"
@change="change"
>asa</uni-data-select>
<p style="color: white;">金字塔—航天镇</p>
</div>
<image src="../../static/QQ截图20230922110211.jpg" mode="" class="img"></image>
</view>
</template>
<script>
export default {
data() {
return {
value: 0,
range: [
{ value: 0, text: "篮球" },
{ value: 1, text: "足球" },
{ value: 2, text: "游泳" },
],
};
},
methods: {
change(e) {
console.log("e:", e);
},
},
};
</script>
<style>
.bg {
height: 200px;
width: 100%;
background-image: url('/static/QQ截图20230925091714.jpg');
background-position: center center;
background-repeat: no-repeat;
}
.img {
margin: 20px;
height: 150px;
}
.title {
display: flex;
justify-content: space-between;
}
</style>
报错
Assignment to constant variable.
const一般是声明常量,如const a=1,const声明的变量不得改变值,这意味着,const一旦声明变量,就必须立即初始化,不能留到以后赋值。
解决 看看是不是有些错的 地方 看看是v2 还是v3 v3要用响应式 ref