diff --git a/client/src/components/chainetv.vue b/client/src/components/chainetv.vue index 0bc7a70..84f9b4b 100644 --- a/client/src/components/chainetv.vue +++ b/client/src/components/chainetv.vue @@ -73,8 +73,8 @@ - - {{modalmessage}} + + {{modalmessage}} @@ -82,6 +82,7 @@ import { putparsechaine } from '../api'; import modalLogin from './modalLogin' import modal from './modal' +import { EventBus } from '../utils'; export default { name: 'chainetv', @@ -145,6 +146,11 @@ export default { return true; }, }, + mounted() { + EventBus.$on('showmodallogin',()=>{ + this.showModalLogin=true; + }) + }, };