私はルートVUEコンポーネントapp.jsを持っている:グローバルvueコンポーネントでメソッドを呼び出すにはどうすればよいですか?
...
const app = new Vue({
el: '#app',
...
methods: {
modalShow: function(target, id=null, message=null){
...
},
...
}
});
私はこのような子コンポーネントがあります。
<template>
<div>
<ul>
<li>
<a href="#" class="thumbnail"
title="Add photo"
@click="modalShow('modal-add-photo', product.id)"
>
<span class="fa fa-plus fa-2x"></span>
</a>
</li>
</ul>
</div>
</template>
<script>
export default {
...
methods: {
...
}
}
</script>
modalShow
方法がルートであるが。どのように私は子供からそれを呼び出すことができますか?
上記のコードは、現在実行されている場合は、私は次のエラーを取得する:
[Vue warn]: Property or method "modalShow" is not defined on the instance but referenced during render. Make sure to declare reactive data properties in the data option.
ルートVueを意味しますか?あなたのコンポーネントはルートの直接の子ですか? – Bert
@Bert Evans、はい、それは私が意味するものです –