随笔- 41
文章- 0
评论- 2
阅读-
15450
10 2021 档案
vue + vant 移动端适配
摘要:1. 设置动态根字号大小,/public/phone-adapt.js,在index.html中引入 (function (doc, win) { const docEl = win.document.documentElement; const resizeEvt = 'orientationch
阅读全文
css 多行文本展开收起
摘要:<template> <div class="content"> <div :class="[isOpen ? 'text' : 'text m']" ref="text"> <div v-if="isShow"> <label class="btn" @click="open" v-show="!
阅读全文
react 微信h5跳转小程序
摘要:componentDidMount() { this.getWxConfig() } getWxConfig () { // 请求后台接口拿到 data信息 wx.config({ debug: false, appId: data.appId, // 必填,公众号的唯一标识 timestamp:
阅读全文