这是我的主页
<template>
<v-form>
<v-select outlined label="Choose s segment from AI/ML model" :items="item">
</v-select>
<v-text-field label="User ID" required></v-text-field>
</v-form>
</template>
<script>
export default {
data: function() {
return {
item: ['asv','abc','bcd'],
};
},
}
</script>但是我运行的项目选择字段是不可见的。为什么会这样呢?我该怎么做才能看到这个?(不会在控制台日志中显示任何错误)
发布于 2021-03-16 19:04:07
代码中唯一的错误是在item: ['asv','abc','bcd']处缺少一个'。否则,它看起来很好。
https://stackoverflow.com/questions/66633131
复制相似问题