关于Vue中的el配置

<div id="xxx">
    ...
</div>

<script>
    const vm = new Vue({...})
    //{...}为Vue的各种配置
</script>

若使用【id="xxx"】,则【el : "#xxx"】

new Vue({
    ...
    el: '#xxx',
    ...
})

若使用【class="xxx"】,则【el : ".xxx"】

new Vue({
    ...
    el: '.xxx',
    ...
})

 

posted @ 2022-02-25 00:14  六六_RAKU  阅读(108)  评论(0)    收藏  举报