logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

Uniapp vue3.0 ref = undefined 的替代方案

setup 在生命周期 beforecreate 和 created 前执行,此时 vue 对象还未创建,因无法使用我们在 vue2.x 常用的 this。解决办法是 vue 中的 getCurrentInstance 方法返回了 ctx 和 proxy,控制台打印 ctx 和 proxy 发现和 vue2.x 中的 this 等同,习惯使用 this 的同学可以用 proxy 进行替代。没有用

#vue.js#javascript
uni-app 子组件使用onLoad无效

1.uni-app 支持的页面生命周期函数是包含onLoad但是,在组件里面的时候不能使用页面生命周期函数,因此想要有onload的效果的时候,必须改成vue的mounted2.uni-app的组件中可以直接使用Vue的生命周期函数对逻辑进行处理...

vue中使用mint-ui的mt-popup出现滚动穿透问题解决方法

防止滚动穿透 只需加入@touchmove.native.stop.prevent 阻止默认根元素的默认事件<mt-popupv-model="popupSCVisible"position="bottom"model="true"closeOnClickModal="true"@touchmove.native.sto...

如何在 vue 中使用 photo-sphere-viewer

官网: https://photo-sphere-viewer.js.org/安装 photo-sphere-viewer依赖npm installphoto-sphere-viewer --save-dev在你需要用到的页面引入文件import PhotoSphereViewer from 'photo-sphere-viewer'import 'ph...

js vue 飘雪 落花效果

<template><div class="flower" :style="{width: 1000 + 'px', height: 800+ 'px', }"></div></template>renderLoadAnimation: function() {let that = this;var block=...

vue动画库 velocity-animate

NPM:# npm i velocity-animate<template><div><transition @before-enter="beforeEnter" @enter="enter" @leave="leave" :css="false"><divv-show="show1">show1 true ...

vue h5(网页) 调用相机拍照和相册,实现多张图片上传功能

第一种需求:只需要使用本地的图片资源<input id="upload" type="file" accept="image/*;" class="abc">第二种需求:只需要使用相机拍照功能<input id="upload" type="file" accept="image/*" capture="camera" c...

hammerJs 在vue里简单的使用

参考链接:https://www.jianshu.com/p/0b0b9364f967git链接:https://github.com/bsdfzzzy/vue2-hammernpmnpm install vue2-hammermain.jsimport { VueHammer } from 'vue2-hammer'Vue.use(VueHammer)<av-ham...

vue 路由跳转前执行事件

destroyed() {alert('清除监听事件')}

TypeScript 导入 JSON Module --resolveJsonModule

// typings.d.tsdeclare module '*.json' {const value: any;export default value;}import jsonfrom 'src/assets/json/users.json'

    共 11 条
  • 1
  • 2
  • 请选择