<template>
<div class="hello">
<h1>{{ msg }}</h1>
<button @click="counter += 1">add {{ counter }}</button>
<button v-on:click="clickH('s1')">点击</button>
<button @click="clickX">点击2</button>
</div>
</template>
<script>
export default {
name: 'HelloWorld',
data(){
return {
counter:0,
message:"我是123"
}
},
methods:{
clickH(name){
console.log("asdf"+name)
},
clickX(){
this.$emit(this.message,"cs")
}
},
props: {
msg: String
}
}
</script>
<style scoped>
</style>
VUE3开发-2、单页面数据操作
于 2025-03-07 09:48:13 首次发布