
最简单的弹出一句话:
需要什么东西在内容里边加就行了
<template>
<view>
<uni-popup ref="popup" background-color="#fff" >
士大夫大师傅
</uni-popup>
<button type="default" @click="openView()">点击</button>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
openView()
{
this.$refs.popup.open();
}
}
}
</script>
<style>
</style>
弹出中加两个按钮:
<template>
<view>
<uni-popup ref="popup" background-color="#fff" >
<view class="popup-content" :class="{ 'popup-height': type === 'left' || type === 'right' }">
<button class="button popup-success" @click="toAddNoteHtml()"><text
class="button-text success-text">html编辑器(app上推荐使用)</text></button>
<button style="margin-top: 10px;" class="button popup-error" @click="toAddNoteMarkdown()"><text
class="button-text error-text">markdown编辑器(临时简版)</text></button>
</view>
</uni-popup>
<button type="default" @click="openView()">点击</button>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
openView()
{
this.$refs.popup.open();
}
}
}
</script>
<style>
</style>
欢迎加群讨论技术,1群:677373950(满了,可以加,但通过不了),2群:656732739。有需要软件开发,或者学习软件技术的朋友可以和我联系~(Q:815170684)
评价
排名
3
文章
317
粉丝
22
评论
14
ICP备案 :渝ICP备18016597号-1
网站信息:2018-2025TNBLOG.NET
技术交流:群号656732739
联系我们:contact@tnblog.net
公网安备:
50010702506256


欢迎加群交流技术