vue3-core/playground/src/App.vue

20 lines
278 B
Vue
Raw Normal View History

2023-11-17 03:01:19 +08:00
<script setup lang="ts">
import { ref } from 'vue'
const count = ref(0)
</script>
<template>
<div>
<h1 class="red">Hello world</h1>
2023-11-17 17:35:49 +08:00
<!-- {{ count }} -->
2023-11-17 03:01:19 +08:00
<button style="font-weight: bold">Inc</button>
</div>
</template>
<style>
.red {
color: red;
}
</style>