We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the shims-vue.d.ts file:
shims-vue.d.ts
import Vue from 'vue'; declare module 'vue/types/vue' { interface Vue { $messageBox: any; } } declare module '*.vue' { import Vue from 'vue'; export default Vue; } declare module '*.js';
I want to add the '$messageBox' in 'this', but i got the error in Vue component file: My code is :
@Component({ components: { [Dialog.Component.name]: Dialog.Component, }, })
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the
shims-vue.d.ts
file:I want to add the '$messageBox' in 'this', but i got the error in Vue component file:
My code is :
The text was updated successfully, but these errors were encountered: