Vue 弹窗编写指南
1. 开门见山
Vue 中的弹窗组件可以实现弹出窗口,提供额外的信息或收集用户输入。
2. 编写步骤
2.1 创建模态窗口组件
<template><div class="modal"> <div class="modal-dialog"> <div class="modal-content"> <header><slot name="title"></slot></header><section><slot name="body"></slot></section><footer><slot name="actions"></slot></footer> </div> </div> </div> </template><script> export default { name: \'my-modal\', props: { title: String, } } </script>