parent
6d55aa3010
commit
34e444f68e
5 changed files with 85 additions and 21 deletions
@ -0,0 +1,13 @@ |
|||||||
|
<template> |
||||||
|
<Demo/> |
||||||
|
</template> |
||||||
|
|
||||||
|
<script> |
||||||
|
import {reactive} from "vue"; |
||||||
|
import Demo from "@/components/demo.vue"; |
||||||
|
|
||||||
|
export default { |
||||||
|
name: 'App', |
||||||
|
components: {Demo}, |
||||||
|
} |
||||||
|
</script> |
After Width: | Height: | Size: 6.7 KiB |
@ -0,0 +1,54 @@ |
|||||||
|
<template> |
||||||
|
<h2>当前求和为:{{ sum }}</h2> |
||||||
|
<button @click="sum++">点击+1</button> |
||||||
|
<hr> |
||||||
|
<h2>当前信息为:{{ msg }}</h2> |
||||||
|
<button @click="msg+='!'">修改信息</button> |
||||||
|
<hr> |
||||||
|
<h2>姓名:{{ person.name }}</h2> |
||||||
|
<h2>年龄:{{ person.age }}</h2> |
||||||
|
<h2>薪资:{{ person.job.j1.salary }}</h2> |
||||||
|
<button @click="person.name+='~'">修改姓名</button> |
||||||
|
<button @click="person.age++">修改年龄</button> |
||||||
|
<button @click="person.job.j1.salary++">修改薪资</button> |
||||||
|
<h2></h2> |
||||||
|
</template> |
||||||
|
|
||||||
|
<script> |
||||||
|
import {reactive, ref, watch, watchEffect} from "vue"; |
||||||
|
|
||||||
|
export default { |
||||||
|
name: 'Demo', |
||||||
|
|
||||||
|
setup() { |
||||||
|
let sum = ref(0) |
||||||
|
let msg = ref('你好呀') |
||||||
|
let person = reactive({ |
||||||
|
name: '张三', |
||||||
|
age: 18, |
||||||
|
job: { |
||||||
|
j1: { |
||||||
|
salary: 20 |
||||||
|
} |
||||||
|
} |
||||||
|
}) |
||||||
|
|
||||||
|
// 方法一: ref的对象监视,通过value实现 |
||||||
|
// watch(person, (newValue, oldValue) => { |
||||||
|
// console.log('person的值变了', newValue, oldValue) |
||||||
|
// }) |
||||||
|
|
||||||
|
watchEffect(() => { |
||||||
|
const x1 = sum.value |
||||||
|
const x2 = person.job.j1.salary |
||||||
|
console.log('watchEffect所指定的回调执行了') |
||||||
|
}) |
||||||
|
|
||||||
|
return { |
||||||
|
sum, |
||||||
|
msg, |
||||||
|
person |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
</script> |
@ -0,0 +1,10 @@ |
|||||||
|
// 引入的不再是Vue构造函数, 引入的是一个名为createApp的工厂函数
|
||||||
|
import { createApp } from 'vue' |
||||||
|
import App from './App.vue' |
||||||
|
|
||||||
|
// createApp(App).mount('#app')
|
||||||
|
|
||||||
|
// 创建应用实例对象
|
||||||
|
const app = createApp(App) |
||||||
|
console.log('@@@',app) |
||||||
|
app.mount('#app') |
Loading…
Reference in new issue