效果:
父组件代码
<template> <el-container v-loading="loading" class="container" element-loading-background="rgba(1,35,54, 0.8)"> <h1>这是父组件</h1> <HelloWorld msg="Welcome to Your Vue.js App" @loadTrue="loadTrue" @loadFalse="loadFalse"/> </el-container> </template> <script> import HelloWorld from '@/components/HelloWorld.vue' export default { name: 'HomeView', components: { HelloWorld }, data() { return { loading: false, } }, methods:{ loadTrue(){ this.loading = true; }, loadFalse(){ this.loading = false; }, } } </script> <style scoped> .container{ width: 100%; height: 800px; position: relative; display: flex; flex-direction: column; justify-content: center; align-items: center; background-color: #CAE1FF; } </style>
子组件代码
<template> <div class="hello"> <h1>{{ msg }}</h1> 这是子组件 <div style="margin-top: 20px;"> <button @click="getList">模拟从后台获取数据</button> </div> </div> </template> <script> let that export default { name: 'HelloWorld', props: { msg: String }, created(){ that = this }, methods:{ getList(){ this.$emit('loadTrue'); setTimeout(function(){ that.$emit('loadFalse'); },1000) } } } </script> <style scoped> .hello{ width: 50%; height: 400px; background-color: #FFF0F5; } </style>
标签:遮罩,vue,HelloWorld,获取数据,loading,组件 From: https://www.cnblogs.com/zwh0910/p/18165932