1. 程式人生 > >Vue:ES6常用語法

Vue:ES6常用語法

ES6 模板字串:  ~ 變數 ~

<div id="app"></div>

<script>

    /* 找到對應id */
    let item = document.getElementById('app');
    /* 宣告變數 */
    let username1 = 'ann';
    let username2 = 'ben';
    /* 替換內容 */
    item.innerHTML = `
    <h1> hello ${username1}</h1>
    <h2> hello ${username2}</h2>
`

</script>