mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-09-23 15:27:37 +08:00
15 lines
307 B
JavaScript
15 lines
307 B
JavaScript
const TabsPagePlugin = {
|
|
install(Vue) {
|
|
Vue.mixin({
|
|
methods: {
|
|
$closePage(closeRoute, nextRoute) {
|
|
const event = new CustomEvent('page:close', {detail:{closeRoute, nextRoute}})
|
|
window.dispatchEvent(event)
|
|
}
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
export default TabsPagePlugin
|