Demo1.vue 188 B

1234567891011121314151617
  1. <template>
  2. <div class="demo">11111</div>
  3. </template>
  4. <script>
  5. export default {
  6. }
  7. </script>
  8. <style scoped>
  9. .demo {
  10. width: 300px;
  11. height: 300px;
  12. background: #f00;
  13. }
  14. </style>