You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
425 B

4 years ago
<template>
<view>
<u-popup :show="showInfo" mode="center" :round="10" closeable>
<view class="mpopup">
<view>
</view>
<view>
<text>人生若只如初见何事秋风悲画扇</text>
</view>
</view>
</u-popup>
</view>
</template>
<script>
export default {
data() {
return {
showInfo: true
}
},
methods: {
}
}
</script>
<style>
</style>