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
3.0.0-alpha.13
https://codesandbox.io/s/pjzpx376q
b-navbar(toggleable type="light")
The render output should be <b-navbar toggleable type="light">
<b-navbar toggleable type="light">
The rendered output is b-navbar toggleable="toggleable" type="light">
b-navbar toggleable="toggleable" type="light">
toggleable=''
chainWebpack
The text was updated successfully, but these errors were encountered:
After reading more source code I was able to get it to work using
chainWebpack: (config) => { config.module .rule('vue') .test(/\.vue$/) .use('vue-loader') .loader('vue-loader') .tap((args) => ({ ...args, template: { doctype: 'html', }, })); },
Not sure if there would be a reason not to have this be the default.
Sorry, something went wrong.
e15a930
No branches or pull requests
Version
3.0.0-alpha.13
Reproduction link
https://codesandbox.io/s/pjzpx376q
Steps to reproduce
b-navbar(toggleable type="light")
What is expected?
The render output should be
<b-navbar toggleable type="light">
What is actually happening?
The rendered output is
b-navbar toggleable="toggleable" type="light">
toggleable=''
but that seems like a hack.chainWebpack
in vue.config.js to add the setting but was unable to add the option to vue-loaderThe text was updated successfully, but these errors were encountered: