admin管理员组文章数量:1345179
I am new to vue.js. and i am using 2.5.13 version.
I'm trying to access my data
variable in ponent file script.
But this give to me a undefined
message.
Id attribute in the ponent returns correct value, but inside script, it would return undefined
.
If I want to use that variable, what do I need to do?
Below is my app.js
code
import App from './ponents/App.vue';
new Vue(Vue.util.extend({
router,
data : {
test : 1
},
}, App))
.$mount('#root');
And bleow is my App ponent code
<template>
<div id="app" :data-id="test">
</div>
</template>
<script>
console.log(this.data);
</script>
I am new to vue.js. and i am using 2.5.13 version.
I'm trying to access my data
variable in ponent file script.
But this give to me a undefined
message.
Id attribute in the ponent returns correct value, but inside script, it would return undefined
.
If I want to use that variable, what do I need to do?
Below is my app.js
code
import App from './ponents/App.vue';
new Vue(Vue.util.extend({
router,
data : {
test : 1
},
}, App))
.$mount('#root');
And bleow is my App ponent code
<template>
<div id="app" :data-id="test">
</div>
</template>
<script>
console.log(this.data);
</script>
Share
Improve this question
edited Feb 1, 2018 at 7:39
Hax0r
asked Feb 1, 2018 at 7:33
Hax0rHax0r
1,8234 gold badges29 silver badges44 bronze badges
2
- 2 The code looks strange for me not sure where to start. I suggest you to learn basic VueJS from this free course laracasts./series/learn-vue-2-step-by-step. An hour of taking this course would give you enough idea to start with VueJS in the proper manner. :) – spicydog Commented Feb 1, 2018 at 7:44
- thanks ! spicydog ^^ – Hax0r Commented Feb 1, 2018 at 8:06
1 Answer
Reset to default 7assign variable var app = new Vue({..})
to your Vue App. and access variable outside vue app by using appname.variable_name
like app.message
var app = new Vue({
el: '#app',
data: {
message: 'Hello Vue!'
}
})
console.log(app.message);
<script src="https://cdn.jsdelivr/npm/vue"></script>
<div id="app">
{{ message }}
</div>
本文标签: javascriptVue JS how to access data variable in scriptStack Overflow
版权声明:本文标题:javascript - Vue JS how to access data variable in script - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743759691a2534138.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论