Vue-loader: Multiple styles lang not supported

Created on 15 Feb 2015  路  1Comment  路  Source: vuejs/vue-loader

Only one style tag and lang per .vue file is support. Be nice to support any number of styles/lang per .vue page.

e.g.

<style lang="stylus">
body
  color yellow
</style>

<style lang="less">
 body {
  background: blue;
 }
</style>

will only return an output containing the second ("less") style tag contents and not incorporate the first ("stylus") style contents.

Most helpful comment

>All comments

Was this page helpful?
0 / 5 - 0 ratings