为了账号安全,请及时绑定邮箱和手机立即绑定

关于es6写法与原生写法的区别?

export default {  data () {    return {      // note: changing this line won't causes changes      // with hot-reload because the reloaded component      // preserves its current state and we are modifying      // its initial state.      msg: 'Hello vue!!'    }  } } 这个写是什么意思??

import Vue from 'vue'

new Vue({

   el:'#hello',

   data:{

     msg:'hello vue i love you!'

   }

})

他们是相等的吗

正在回答

3 回答

es6也是原生 只是标准不同

第一个是组件写法 

new Vue 这个实例化#hello;使#hello 继承vue的方法 

我的理解是这样

0 回复 有任何疑惑可以回复我~

export default {  data () {    return {      // note: changing this line won't causes changes      // with hot-reload because the reloaded component      // preserves its current state and we are modifying      // its initial state.      msg: 'Hello vue!!'    }  } } 这个写法是什么意思??

0 回复 有任何疑惑可以回复我~

es6就是原生

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
vue.js入门基础
  • 参与学习       209716    人
  • 解答问题       677    个

本门为vuejs入门教程,详细的讲解加实战,可以帮你进入vuejs的大门

进入课程

关于es6写法与原生写法的区别?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信