提交 303b9805 编写于 作者: Q qq_63480508

Tue Mar 18 18:24:00 CST 2025 inscode

上级 aa50c4cb
<script setup>
defineProps({
msg: {
type: String,
required: true
}
})
</script>
const reactiveHandler = {
get(target, key) {
console.log(`获取属性: ${key}`);
return target[key];
},
<template>
<div class="greetings">
<h1 class="green">{{ msg }}</h1>
<h3>
You’ve successfully created a project with
<a target="_blank" href="https://vitejs.dev/">Vite</a> +
<a target="_blank" href="https://vuejs.org/">Vue 3</a>.
</h3>
</div>
</template>
};
<style scoped>
h1 {
font-weight: 500;
font-size: 2.6rem;
top: -10px;
}
const state = new Proxy({ count: 0 }, reactiveHandler);
h3 {
font-size: 1.2rem;
}
.greetings h1,
.greetings h3 {
text-align: center;
}
@media (min-width: 1024px) {
.greetings h1,
.greetings h3 {
text-align: left;
}
}
</style>
state.count++; // 设置属性: count -> 1
console.log(state.count); // 获取属性: count
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册