If I have the component LogoutButton.vue
export default { data() { return { } }, methods: { Logout() { console.log("something") } } } </script> <template> <button @click="Logout">Logout</button> </template>
How to use LogoutButton component in other components? I mean how to import this component and its click method in other component?