美文网首页
vue饿了么学习--项目实战--外部组件--props

vue饿了么学习--项目实战--外部组件--props

作者: Monee121 | 来源:发表于2018-04-02 23:45 被阅读0次

    https://vuefe.cn/v2/guide/components.html#使用-Props-传递数据
    步骤1:
    App.vue(模板)

    <v-header :seller="seller"></v-header>
    

    header.vue(js)

    export default {
        props: {
          seller: {
            type: Object
          }
        }
      }
    

    相关文章

      网友评论

          本文标题:vue饿了么学习--项目实战--外部组件--props

          本文链接:https://www.haomeiwen.com/subject/ygpfhftx.html