我有一个组件,想要添加一个单击侦听器,该侦听器在Vue的父模板中运行一个方法。这可能吗?
<template>
<custom-element @click="someMethod"></custom-element>
</template>
<script>
export default {
name: 'template',
methods: {
someMethod: function() {
console.log(true);
}
}
</script>
您可以使用
$root
类似这样的,但是,如果你使用nuxt与VUE @daxigu响应将无法工作,因为$root
是nuxt它的自我。我能做什么?这个:$ root:正如我之前所说,这是nuxt。
$children[0]: is nuxtloading.
$children1: is your main component, in my case, it was a base layout with a few global components and a global mixin.
Hope it helps.