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
Tell us about your environment
Please show your full configuration:
{ "extends": [ "airbnb-base", "plugin:vue/recommended" ] }
What did you do?
Created the following vue component / fixed with ESLint according config:
<template> <f7-app :params="f7params"> <f7-statusbar /> <f7-view main /> </f7-app> </template>
What did you expect to happen? https://framework7.io/ app component is bundled nicely with https://parceljs.org/.
What actually happened? Resulting code is broken. Bundling works nicely when I add the following rule:
"rules": { "vue/html-self-closing": [ "error", { "html": { "component": "never" } } ] }
Resulting in the following vue component:
<template> <f7-app :params="f7params"> <f7-statusbar></f7-statusbar> <f7-view main></f7-view> </f7-app> </template>
The text was updated successfully, but these errors were encountered:
Thank you for this issue.
I don't know because I've never used parcel, but both code should build successfully. If that doesn't work, change the rule settings and use it.
Sorry, something went wrong.
No branches or pull requests
Tell us about your environment
Please show your full configuration:
What did you do?
Created the following vue component / fixed with ESLint according config:
What did you expect to happen?
https://framework7.io/ app component is bundled nicely with https://parceljs.org/.
What actually happened?
Resulting code is broken. Bundling works nicely when I add the following rule:
Resulting in the following vue component:
The text was updated successfully, but these errors were encountered: