button
{{ name }}
&l_vue $modal">
当前位置:   article > 正文

vue model 使用_vue $modal

vue $modal

vue 组件封装中,使用model 配合.sync 修饰符实现联动实现子组件数据改变同步修改父组件

chid.vue

<template>
    <div>
        <el-button @click="showChange">button</el-button>
        <div v-show="show">{{ name }}</div>
    </div>
</template>

<script>
export default {
    props: {
        name: {
            type: String,
            default: "测试"
        },
        show: {
            type: Boolean,
            default: false
        }
    },
    model: {
        prop: "show",
        event: "show-change"
    },
    methods: {
        showChange() {
        	// update:show 配合update 加上 model 中的 prop 通知 使用
            this.$emit("update:show", !this.show);
            this.$emit("show-change", this.show);
        }
    }
};
</script>

<style lang="scss" scoped></style>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34

parent.vue

<template>
	<!-- .sync 需要配合 sync修饰符才能使用  -->
	<child :show.sync="show"></child>
</template>
<script>
import child from "./child.vue"
export default {
    components: { child },
    data() {
        return {
            show: false,
        }
    }
}
</script>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/103279
推荐阅读
相关标签
  

闽ICP备14008679号