style-parser-basic.vue 221 B

12345678910111213141516171819
  1. <template>
  2. <p class="p">hello</p>
  3. </template>
  4. <script>
  5. export default {
  6. data () {
  7. return {
  8. msg: 'Hello from Component A!'
  9. }
  10. }
  11. }
  12. </script>
  13. <style lang="less">
  14. .p {
  15. color: @theme-p-color;
  16. }
  17. </style>