
javascript
<script setup>
import { ref, onMounted } from 'vue'
import './index.css'
const count = ref(0)
const handleCount = () => {
count.value++
}
onMounted(() => {
console.log(1)
})
</script>
<template>
<div class="m-home-wrap">
home
<button @click="handleCount">{{ count }}</button>
<div class="m-home-demo"></div>
</div>
</template>
<style></style>
人工智能学习网站