我正在尝试使用vue-class-component和typescript(在此处https://github.com/vuejs/vue-class-component找到)创建vue组件。据我了解,数据是在类中定义的,就像我在下面所做的那样-但我收到错误消息:
"[Vue warn]: Property or method "test" is not defined on the instance but referenced during render. Make sure that this property is reactive, either in the data option, or for class-based components, by initializing the property."
这是我的实际代码的精简版,但仍然无法使用:
<template>
<div id="vue-test">
<input v-model="test"/>
{{test}}
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import Component from 'vue-class-component';
@Component({
})
export default class AppearanceDialogVue extends Vue {
public test: string = '100';
}
</script>
编辑:看来,将“测试”的声明更改为
public test: string;
工作
答案 0 :(得分:2)
这是解决此问题的方法,需要添加构造函数并在构造函数中初始化属性
<template>
<section class="dropdown" style="background-color: #dde0e3">
<select class="btnList" v-model="foo">
<option v-for="item in selectedfooData" :value="item" :key="item.id">{{item}}</option>
</select>
{{foo}}
</section>
</template>
<script lang="ts">
import { Component, Prop, Vue } from 'vue-property-decorator';
@Component
export default class HelloWorld extends Vue {
private foo: string;
private selectedfooData : string[] = [
'one',
'two'
]
construtor() {
super();
this.foo = '';
}
}
</script>