# Notify 消息提示 该组件一般用于页面顶部向下滑出一个提示,尔后自动收起的场景。 # 平台差异说明 App(vue)App(nvue)H5小程序 √ √ √ √ # 基本使用 <template> </template> export default { data() { return { show: true } } } copy # ref调用 <template> </template> export default...
简介:uView Notify 消息提示 该组件一般用于页面顶部向下滑出一个提示,尔后自动收起的场景。 #平台差异说明 #基本使用 <template></template>export default {data() {return {show: true}}} copy #ref调用 <template></template>export default {onReady(){this.$refs.uNotify.show({top: 10,type: 'error'...