2025-01-06
<script setup>
import {ref} from 'vue';
// 使用 ref 来确保数据是响应式的
let name = ref('linxz');
function changeName() {
name.value = 'Mary';
}
</script>
<script>
export default {
data() {
return {
name: 'linxz'
};
},
methods: {
changeName() {
this.name = 'Mary';
}
}
};
</script>