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
15.0.0
https://vue-loader.vuejs.org/guide/custom-blocks.html
scroll to the end of page
there is extra equal sign in code snippet "ComponentA.vue"
export default { components: { ComponentB }, data () { return { docs: ComponentB.__docs } } }
export default = { components: { ComponentB }, data () { return { docs: ComponentB.__docs } } }
The text was updated successfully, but these errors were encountered:
docs: fix export syntax, closes vuejs#1311
c9fb87a
2124596
No branches or pull requests
Version
15.0.0
Reproduction link
https://vue-loader.vuejs.org/guide/custom-blocks.html
Steps to reproduce
scroll to the end of page
What is expected?
there is extra equal sign in code snippet "ComponentA.vue"
export default {
components: { ComponentB },
data () {
return {
docs: ComponentB.__docs
}
}
}
What is actually happening?
export default = {
components: { ComponentB },
data () {
return {
docs: ComponentB.__docs
}
}
}
The text was updated successfully, but these errors were encountered: