uniapp踩坑之项目:uniapp修改弹窗组件样式

在components文件夹里创建zz-prompt文件夹,再在下面创建index.vue

 





在单页面home.vue里引入通知弹窗组件

//html

    
      
      
        这里是内容
      
    
    
//data
import Prompt from '@/components/zz-prompt/index.vue' // 通知弹窗组件
export default {
    components: {
      Prompt
    },
    data() {
      return {
        ......
        // 控制弹框输入框显示
        promptVisible: false,
      };
    },
    
//js
onLoad: function () {
    let that = this
    that.promptVisible = true   // 通知弹窗打开
}

methods: {    
   /**
   * 关闭按钮
   */
    clickPromptConfirm () {
      this.promptVisible = false  // 通知弹窗关闭
    },
}

上一篇文章,

git拉取失败,没有权限:Please make sure you have the correct access rights and the repository exist_git pull 没权限_意初的博客-CSDN博客git拉取失败,没有权限:Please make sure you have the correct access rights and the repository exist,提示错误显示为没有权限,主要是因为不同设备上的ssh公钥不同,导致git仓库公钥出现问题,需要重新重新生成ssh公钥即可解决。_git pull 没权限https://blog.csdn.net/weixin_43928112/article/details/131196951

你可能感兴趣的:(uni-app,前端,javascript,html,vue.js,es6)