Skip to content
New issue

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

SFC: Invalid root tag structure should throw error #7760

Open
hibiyasleep opened this issue Mar 7, 2018 · 3 comments
Open

SFC: Invalid root tag structure should throw error #7760

hibiyasleep opened this issue Mar 7, 2018 · 3 comments

Comments

@hibiyasleep
Copy link

hibiyasleep commented Mar 7, 2018

Moved from: vue-loader#1161

What problem does this feature solve?

In Single File Component, <script> tag may or may not closed, so this works:

<template>
  <div class="chicken">
    Chicken: {{ chicken }}
  </div>
</template>

<script>
export default {
  data() { return { chicken: 'fried' } }
}
// (EOF)

However, <style> isn't; if there's no </style>, styles are simply ignored without any warning or errors.

<template>
  <div class="chicken">
    Chicken: {{ chicken }}
  </div>
</template>

<script>
export default {
  data() { return { chicken: 'fried' } }
}
</script>

<style scoped>
.chicken { /* super important */
  font-weight: 900;
}
/* (EOF) */

What does the proposed API look like?

Any <template>, <script>, <style> tags should explicitly:

  • Closed - unclosed tag should throw a warning and refuse to build.
  • or May not closed - contents should build correctly even it's not closed.
@ameerthehacker
Copy link

@posva can I take up this issue.

@hibiyasleep
Copy link
Author

hibiyasleep commented Mar 29, 2018

2018-03-30 07 28 59

Even on this stupid situation, SFC compiler doesn't throw any error.

At least, with my config, <script type="sass"> seems invoke both of sass-loader and eslint, and sass got transpiled and worked. is this intended behavior?

@hibiyasleep hibiyasleep changed the title SFC: Unclosed <style> tag should throw error, or just work SFC: Invalid root tag structure should throw error Mar 29, 2018
@hibiyasleep
Copy link
Author

hibiyasleep commented Mar 29, 2018

Also when multiple <script> tag exists, all but last tags are simply ignored.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants