component.vue
<template> | |
... | |
</template> | |
<script> | |
import Bus from '../support/bus' | |
export default { | |
mounted() { | |
Bus.$on('mounted') | |
}, | |
destroyed() { | |
Bus.$off('mounted') | |
} | |
} | |
</script> | |
<style scoped> | |
... | |
</style> |