apache / incubator-weex-loader

Apache License 2.0
65 stars 32 forks source link

Not support <style scoped> in .vue file #38

Closed Hanks10100 closed 7 years ago

Hanks10100 commented 7 years ago

example.vue

<template>
  <div>
    <text class="title">Red Title</text>
  </div>
</template>

<style scoped>
  .title {
    font-size: 100;
    color: red;
  }
</style>

The weex-loader@0.4.0 will not generate the styles. (no font-size and color)

Jinjiang commented 7 years ago

weex-vue-loader@0.2.3 fixed this problem