Vue3.x & Ant-Design-Vuevue

vue components

2019-02-13  本文已影响0人  墨芊baby

vue组件使用分三步:

1. 引用组件 import facePop from './components/facePop'
2. 注册组件 components = { facePop }
3. 使用组件 <facePop></facePop>
<template>
    <div>
        <h2>我是一个facePop组件</h2>
    </div>
</template>
<template>
  <div>
    <facePop></facePop>                   <!--3、在模板中使用kebab-case 两种都可以-->
    <face-pop></face-pop>                 <!--3、在模板中使用PascalCase-->
  </div>
</template>

<script>
  import facePop from './components/facePop';     //1、引入组件 import后的名字一般与组件名称相同,也可不一样
  export default{
    data(){},
    components:{
     facePop       //2、注册组件 一般直接取一个名字  即:facePop:facePop
    }
  }
</script>

定义组件名的方式有两种:
(一) 使用 kebab-case
Vue.component('my-component-name', { /* ... / })
当使用 kebab-case (短横线分隔命名) 定义一个组件时,你也必须在引用这个自定义元素时使用 kebab-case,例如 <my-component-name>。
(二)使用 PascalCase
Vue.component('MyComponentName', { /
... */ })
当使用 PascalCase (首字母大写命名) 定义一个组件时,你在引用这个自定义元素时两种命名法都可以使用。也就是说 <my-component-name> 和 <MyComponentName> 都是可接受的。注意,尽管如此,直接在 DOM (即非字符串的模板) 中使用时只有 kebab-case 是有效的。
我们使用字符串模板,所以这个限制就不存在了

以上是组件的简单使用方法。

1)父组件调用子组件的时候绑定动态属性
2)子组件里通过props(props可以接收一个数组或对象,接收对象时可对数据进行校验如:{title:String},可以校验组件传过来的是否为String)接收父组件传过来的数据
总结:父组件传值给子组件(父组件绑定数据如:list="list",子组件通过props获取)
子组件的props选项能够接收来自父组件数据。没错,仅仅只能接收,props是单向绑定的,即只能父组件向子组件传递,不能反向。

<v-facePop showFaceDia=“这是文字”></v-facePop> // 此处showFaceDia不加冒号
子组件:
props:{
  showFaceDia: String
}

(2) 动态传递:

父组件:
data: 
{ 
    showFaceDia: false 
}
<v-facePop :showFaceDia=“showFaceDia”></v-facePop>

子组件:
props:{
  showFaceDia: Boolean
}
子组件中:
this.showFaceDia = false  
this.$emit('showFaceDia',this.showFaceDia)  //执行showFaceDia函数并把要改变的值作为参数带过去

父组件:
methods:{
showFaceDia(msg){
    this.showFaceDia = msg
  }
}
不要忘记在DOM中引用:
<test :title="title" @showFaceDia="showFaceDia"></test>//注意showFaceDia后不能加括号

比如父组件中showFaceDia 默认为true
子组件中:
this.showFaceDia = false  
this.$emit('showFaceDia',this.showFaceDia)  //执行showFaceDia函数并把要改变的值作为参数带过去

父组件:
events = {
            showFaceDia(msg){
                this.showFaceDia = msg
            }
        }
//父组件
<v-test :title="title" ref="aa"></v-test> //通过ref为子组件赋予ID引用
<div @click="getChild()"></div>
getChild(){
  this.$refs.aa.childFun()   // 此处使用
}
(1)直接在子组件中通过this.$parent.event来调用父组件的方法
(2)在子组件里用$emit向父组件触发一个事件,父组件监听这个事件就行了实例:
子组件:
methods: {
        getParent () {
            this.$emit('togglePop')  //此处直接写父组件的事件名称
        }
    }
父组件:
DOM中:<test :title="title" @togglePop="togglePop"></test>
togglePop(){
            console.log('ddddddd')
        },

wepy中的写法:https://tencent.github.io/wepy/document.html#/?id=%E7%BB%84%E4%BB%B6%E9%80%9A%E4%BF%A1%E4%B8%8E%E4%BA%A4%E4%BA%92

父组件:
DOM中:
<facePop @parentFn.user="togglePop"></facePop>
子组件DOM和方法:
<view @tap="getParent"></view>
methods: {
        getParent () {
            this.$emit('parentFn')  
        }
    }

通过父组件向子组件传不同的值作为标识,可以有针对性的对各父组件进行个性化的操作。

父组件1:
data(){
  proDetail: 'proDetail'
}
<test :proDetail='proDetail'></test>
子组件:
props:{
  proDetail: String
}
if(this.proDetail === 'proDetail'){ ... } //此时针对父组件1的一系列操作

待研究:
非父子组件之间的传值

上一篇 下一篇

猜你喜欢

热点阅读