AttributesOnBlocks.vue 242 B

12345678910111213141516171819
  1. <script lang="js">
  2. export default {
  3. props: {
  4. name: {
  5. type: String
  6. }
  7. }
  8. };
  9. </script>
  10. <template lang="html">
  11. <div class="widget">Hello {{name}}</div>
  12. </template>
  13. <style scoped lang="css">
  14. .widget {
  15. color: red;
  16. }
  17. </style>