1.el

new Vue({
  el: '#app',
  data: obj
})
<div >
  <p>{{ foo }}</p>
  <!-- 这里的 `foo` 不会更新! -->
  <button v-on:click="foo = 'baz'">Change it</button>
</div>

2.$mount

const app = new Vue({
    router,
    i18n,
    ...App
}).$mount('#app')
<div >
    <h1 style="font-size: 16px; text-align: center;">{{ $t("message.hello") }}</h1>
</div>

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-05-18
  • 2021-11-16
  • 2022-02-03
  • 2022-12-23
  • 2021-06-10
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-09
  • 2022-12-23
  • 2021-10-04
相关资源
相似解决方案