Vue调用遇到问题:
报错:
vue.js:659 [Vue warn]: Property or method “message” 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. See: https://vuejs.org/v2/guide/reactivity.html#Declaring-Reactive-Properties.
(found in <Root>)
解决:
原因是在Html网页div使用了:message属性,并要用vue v-bind绑定了,但是JS没有初始化他。
<div id="app4">
<span style="color: #367ebd; font-weight: bold" v-bind:title="message">
1 鼠标悬停显示当前系统时间
</span>
</div>
解决:JS代码new Vue实现的地方 ,data(){}里设置初始化message的值。
new Vue({
el: '#app4',
data() {
return {
message: '1 页面加载于' + new Date().toLocaleString()
}
}}
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/101603.html