使用vue帮我编写一个弹窗
时间: 2024-02-26 20:56:22 浏览: 72
好的,以下是一个基本的弹窗组件示例,你可以根据自己的需求进行修改:
```
<template>
<div class="modal" v-if="show">
<div class="modal-mask"></div>
<div class="modal-wrapper">
<div class="modal-container">
<div class="modal-header">
<slot name="header">
默认标题
</slot>
</div>
<div class="modal-body">
<slot name="body">
默认内容
</slot>
</div>
<div class="modal-footer">
<slot name="footer">
<button @click="closeModal">关闭</button>
</slot>
</div>
</div>
</div>
</div>
</template>
<script>
export default {
props: {
show: {
type: Boolean,
required: true
},
onClose: {
type: Function,
required: true
}
},
methods: {
closeModal() {
this.onClose();
}
}
};
</script>
<style>
.modal {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: flex;
align-items: center;
justify-content: center;
z-index: 9999;
}
.modal-mask {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.5);
}
.modal-wrapper {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
}
.modal-container {
background-color: #fff;
border-radius: 4px;
padding: 20px;
max-width: 500px;
}
.modal-header {
font-size: 18px;
font-weight: bold;
margin-bottom: 10px;
}
.modal-body {
margin-bottom: 20px;
}
.modal-footer button {
border: none;
background-color: #333;
color: #fff;
padding: 10px 20px;
border-radius: 4px;
cursor: pointer;
}
</style>
```
使用方法:
1. 在需要使用弹窗的组件中引入该组件:
```
<template>
<div>
<button @click="showModal = true">点击打开弹窗</button>
<modal :show="showModal" :onClose="closeModal">
<template #header>
标题
</template>
<template #body>
内容
</template>
<template #footer>
<button @click="closeModal">关闭</button>
</template>
</modal>
</div>
</template>
<script>
import Modal from './Modal.vue';
export default {
components: {
Modal
},
data() {
return {
showModal: false
};
},
methods: {
closeModal() {
this.showModal = false;
}
}
};
</script>
```
2. 在需要使用弹窗的组件中定义一个布尔类型的变量showModal,用于控制弹窗的显示和隐藏。
3. 在需要使用弹窗的组件中定义一个方法closeModal,用于关闭弹窗并将showModal变量设置为false。
4. 在需要使用弹窗的组件中使用Modal组件,并传入show和onClose两个props。在Modal组件中使用slot分发header、body和footer三个插槽,用于自定义弹窗的标题、内容和底部按钮。
阅读全文