Ja próbuje dodać niestandardowy obsługi InlineButtonClickHandler
się do <router-link>
komponentu click
imprezy, tak że mogę emitować zwyczaj appSidebarInlineButtonClick
wydarzenie.Dodaj do <router-link> detektor zdarzeń za pomocą komponentu „v-on:” Dyrektywa - VueJS
Ale mój kod nie działa. Co ja robię źle?
<template>
<router-link :to="to" @click="InlineButtonClickHandler">
{{ name }}
</router-link>
</template>
<script type="text/babel">
export default {
props: {
to: { type: Object, required: true },
name: { type: String, required: true }
},
methods: {
InlineButtonClickHandler(event) {
this.$emit('appSidebarInlineButtonClick');
}
}
}
</script>
Czy można wyświetlić dziennik konsoli? – samayo