App.vue 269 B

12345678910111213141516171819
  1. <script setup lang="ts">
  2. import { ref } from 'vue'
  3. const count = ref(0)
  4. </script>
  5. <template>
  6. <div>
  7. <h1 class="red">Hello world</h1>
  8. {{ count }}
  9. <button style="font-weight: bold">Inc</button>
  10. </div>
  11. </template>
  12. <style>
  13. .red {
  14. color: red;
  15. }
  16. </style>