笔记

万物寻其根,通其堵,便能解其困。
  博客园  :: 新随笔  :: 管理

nextTick

Posted on 2025-03-07 10:46  草妖  阅读(2)  评论(0)    收藏  举报
<div id="app">
    <child-component></child-component>
</div>
<script>
    Vue.component('child-component', {
        template: '<div ref="child">Child Component</div>',
        mounted() {
            this.$nextTick(() => {
                console.log(this.$refs.child.textContent); // 'Child Component'
            });
        }
    });
    new Vue({
        el: '#app'
    });
</script>