继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

【九月打卡】第3天 数据,方法,计算属性和侦听器(2)

断线纸鸢1
关注TA
已关注
手记 42
粉丝 2
获赞 1

课程名称:2022持续升级 Vue3 从入门到实战 掌握完整知识体系

课程章节:2-9 数据,方法,计算属性和侦听器(2),2-10 样式绑定语法

主讲老师:Dell


课程内容:

今天学习的内容包括: 2-9 数据,方法,计算属性和侦听器(2),2-10 样式绑定语法

知识点:
    1. computed 和 watcher 都能实现的功能建议使用 computed,因为更简洁  
    2. computed 和 method 都能实现的功能建议使用 computed,因为有缓存
    3. 当子组件有两个标签时,$attrs可以继承父组件内对子组件定义的样式,如 :class='$attrs.class'

示例代码:

<script>
    // computed 和 watcher 都能实现的功能建议使用 computed,因为更简洁
    // computed 和 method 都能实现的功能建议使用 computed,因为有缓存
    const app = Vue.createApp({
        data() {
            return {
                message: 'hello',
                price: 5,
                count: 2,
                newTotal: 10
            }
        },
        computed: {
            // 当计算属性依赖的内容改变的时候才会触发
            total() {
                return this.count * this.price + '-' + Date.now();
            }
        },
        methods: {
            // 只要页面重新渲染,才会重新计算
            getTotal() {
                return this.count * this.price + '-' + Date.now();
            }
        },
        watch: {
            // price 发生变化时,函数会执行
            price(current, prev) {
                this.newTotal = current * this.count;
            }
        },
        template: `
            <div v-bind:title="message">{{ message }} {{ total }}</div>
            <br>
            <div>{{ message }} {{ getTotal() }}</div>
            <br>
            <div>{{ message }} {{ newTotal }}</div>
        `
    });

    const vm = app.mount('#root');
</script>

课程收获:

今天学完了第二章,这里只记录了今天学习的前两节知识点。Vue 的基本语法学的差不多了,接下来是第三章的 Vue 组件。按计划学习,15天内学完本课程,Step by step。

今日课程学习时间大约花费 22 分钟。


http://img4.sycdn.imooc.com/63188ce20001914118910943.jpg

http://img2.sycdn.imooc.com/63188ce30001918714740830.jpg


打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP