custom-content-layer的效果怎么实现呢
Closed this issue · 1 comments
jiagushuai commented
qiheng commented
@jiagushuai
`
// 普通使用
<layer v-model="showLayer" @sure="yesFn" :btn="['确定使用', '放弃']" :content="'欢迎使用vue2-layer-mobile'">
// 利用 slot,自定义风格各异的弹层
// 扩展支持 slot 是为了解决以 plugin 形式时,通过 content 属性传入生成的内容不支持 vue 特性的问题
<layer v-model="showLayer" @sure="yesFn" :btn="['确定使用', '放弃']" :content="'欢迎使用vue2-layer-mobile'">
请输入支付密码
export default {
data() {
return {
showLayer: true
}
}
}
`