123456789101112131415161718192021222324252627 |
- <script>
- export default {
- props: {
- name: {
- type: String
- }
- }
- };
- </script>
- <template>
- <div class="widget">Hello {{name}}</div>
- </template>
- <style>
- .widget {
- color: red;
- }
- </style>
- <custom1>
- hello 1
- </custom1>
- <custom2>
- hello 2
- </custom2>
|