admin-vue/04-computed属性的使用/getter属性与setter属性.html

54 lines
1.2 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div id="app">
<!-- <div>{{fullName}}</div>
<div>{{fullName}}</div>
<div>{{fullName}}</div>
<div>{{fullName}}</div> -->
<div>{{fullName()}}</div>
<div>{{fullName()}}</div>
<div>{{fullName()}}</div>
<div>{{fullName()}}</div>
</div>
</body>
<script src="../00-tools/JavaScript/vue.js"></script>
<script>
let vue=new Vue({
el:"#app",
data:{
surname:"Tom",
name:"Json"
},
methods: {
fullName:function(){
console.log(123);
return this.surname+" "+this.name
}
},
computed:{
/*一般传到computed属性里的对象都是get属性因此如果我们特意想改内容就必须使用set属性*/
// fullName:{
// set:function(val){
// let value=val.split(" ")
// this.surname=value[0]
// this.name=value[1]
// console.log(surname);
// },
// get:function(){
// console.log("123");
// return this.surname+" "+this.name
// }
// }
}
})
</script>
</html>