admin管理员组文章数量:1341459
export default {
props: {
goToSomePage: {
type: Function,
default: () => { this.$router.push({ name: 'some-page' }) }
}
}
}
I want do something like this but "this" is undefined.
Is there any way to solve this problem?
I want to give a default action and use "this" inside that callback func.
export default {
props: {
goToSomePage: {
type: Function,
default: () => { this.$router.push({ name: 'some-page' }) }
}
}
}
I want do something like this but "this" is undefined.
Is there any way to solve this problem?
I want to give a default action and use "this" inside that callback func.
Share Improve this question asked Apr 9, 2019 at 7:58 KuruKuru 1,5172 gold badges15 silver badges21 bronze badges 1- please show how do you use it? – Boussadjra Brahim Commented Apr 9, 2019 at 8:23
2 Answers
Reset to default 9you can change arrow function to anonymous function as below
export default {
props: {
goToSomePage: {
type: Function,
default: function(){ this.$router.push({ name: 'some-page' }) }
}
}
}
the anonymous function uses the enclosing scope for this so you don't have to bind it by ur self. that means here the anonymous function will use the same scope as the other options
The reason your attempt does not work is because:
- You used arrow function where
this
is lexical. - Vue does not automatically bind functions passed to
props
property with any Vue instance. Sothis
is automatically bind to thewindow
(global) object.
You can try something like this:
new Vue({
el: '#app',
props: {
goToSomePage: {
type: Function
}
},
puted: {
putedGoToSomePage(){
// If `goToSomePage` prop is provided, return that function
if (typeof this.goToSomePage === 'function')
return this.goToSomePage.bind(this);
// Else, return your intended $router function here
return (() => {
/* UNCOMMENT THIS IN YOUR CODE */
// this.$router.push({ name: 'some-page' })
// This is to prove that `this` is referencing the Vue instance
console.log(this);
})
}
}
});
<script src="https://cdnjs.cloudflare./ajax/libs/vue/2.5.17/vue.min.js"></script>
<div id="app">
<button @click="putedGoToSomePage">Go To Some Page</button>
</div>
The method above make use of puted
property to pass your function. Using that, Vue magically bind this
to its parent Vue instance.
本文标签: javascripthow to use quotthisquot in vue components default prop functionStack Overflow
版权声明:本文标题:javascript - how to use "this" in vue components default prop function - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743664596a2518514.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论