使用属性传值
订阅模式$emit 像父组件传值 this.$emit("事件",参数~~);先在子组件this.$emit(translateForm1,参数) 然后再在 父组件中<Translateorm V-on:translateForm1=translatedText > <Translateorm >
数
父组件像子组件传值props
首先在父件中绑定一个文本事件 translatedText ,然后再在子组件中实用props[translatedText ]
如果想要用http 必须先要安装 vue-resource
this.$http.get("API地址").then((response)=>{
})