<script setup lang="ts">
import { ref } from 'vue'
const username = ref('');
const phone = ref('');
console.log(username.value);
const submit = () => {
const db = uniCloud.database();
db.collection('address').add({ username: username.value, phone: phone.value }).then(res => {
console.log(res);
})
}
</script>
- 发布:2022-08-31 15:25
- 更新:2022-09-02 19:22
- 阅读:326
产品分类: HbuilderX
PC开发环境操作系统: Windows
PC开发环境操作系统版本号: w10
HBuilderX版本号: 3.5.3
示例代码:
操作步骤:
vue3 ts 下 使用ref的时候 带value 会提示
vue3 ts 下 使用ref的时候 带value 会提示
预期结果:
不要有波浪线提示
不要有波浪线提示
实际结果:
有波浪线提示
有波浪线提示
bug描述:
最新正式版HBuilderX
vue3 ts 下 使用ref的时候 带value 会提示