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
The compiler options need to be documented somewhere. I found some posts on how this is supposed to work in vue2 and vue3 plugins.
I am using the vue2 plugin, the latest version. The following configuration does nothing in the dev build.
Vue compiler throws errors for all custom components starting with <mj-
return defineConfig({ plugins: [ vue({ template: { transformAssetUrls: { base: null, includeAbsolute: false, }, compilerOptions: { isCustomElement: (tag) => tag.startsWith('mj') } }, }), ] });
Am I doing something wrong, or is this a bug? Has anybody else had any success with the custom components like MJML?
Thanks, Juha
The text was updated successfully, but these errors were encountered:
Does this help :
In your main.js -> Vue.config.ignoredElements = [/mj-\w*/];
Vue.config.ignoredElements = [/mj-\w*/];
Sorry, something went wrong.
No branches or pull requests
The compiler options need to be documented somewhere. I found some posts on how this is supposed to work in vue2 and vue3 plugins.
I am using the vue2 plugin, the latest version. The following configuration does nothing in the dev build.
Vue compiler throws errors for all custom components starting with <mj-
Am I doing something wrong, or is this a bug? Has anybody else had any success with the custom components like MJML?
Thanks, Juha
The text was updated successfully, but these errors were encountered: