上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 44 下一页
摘要: 实现效果 import Share from 'react-native-share' import ViewShot from 'react-native-view-shot' const shotRef = useRef<ViewShot>(null) const getTime = () => 阅读全文
posted @ 2023-07-19 10:25 龙卷风吹毁停车场 阅读(88) 评论(0) 推荐(0)
摘要: &::-webkit-scrollbar { width: 10px; } &::-webkit-scrollbar-thumb { border-radius: 8px; background-color: #C6D1E2; } &::-webkit-scrollbar-track { borde 阅读全文
posted @ 2023-07-19 10:01 龙卷风吹毁停车场 阅读(65) 评论(0) 推荐(0)
摘要: 移入: mouseover和mouseenter最本质的区别是:mouseover支持事件冒泡,mouseenter不支持事件冒泡。移除:mouseleave 仅在指针离开元素时被触发,不冒泡;而 mouseout 在指针离开元素或进入该元素的子元素时均会被触发 阅读全文
posted @ 2023-06-20 20:15 龙卷风吹毁停车场 阅读(91) 评论(0) 推荐(0)
摘要: 调用手机系统原生分享如下图 使用: react-native-sharereact-native-share官网 阅读全文
posted @ 2023-06-20 14:17 龙卷风吹毁停车场 阅读(66) 评论(0) 推荐(0)
摘要: 1、安装 npm i vuex-persistedstate yarn add vuex-persistedstate 2、在store.js中引入 import createPersistedState from "vuex-persistedstate" 举例: import Vue from 阅读全文
posted @ 2023-05-15 11:26 龙卷风吹毁停车场 阅读(221) 评论(0) 推荐(0)
摘要: <input type="text" v-model="amount" oninput="value=value.replace(/[^0-9.]/g,'')" placeholder="enter amount"> 阅读全文
posted @ 2023-05-05 14:21 龙卷风吹毁停车场 阅读(23) 评论(0) 推荐(0)
摘要: 在assets下新建metamask.js import { ethers } from "ethers"; //版本号为 "ethers": "^4.0.47", import { buildLoginNonce } from '@/api/register' //请求接口后台返回随机验证码 /* 阅读全文
posted @ 2023-04-27 11:57 龙卷风吹毁停车场 阅读(296) 评论(0) 推荐(0)
摘要: 在assets下新建web3.js文件 import { Message } from 'element-ui'; import { ethers } from "ethers"; //版本号为 "ethers": "^4.0.47", import Tabi from './Tabi.json'; 阅读全文
posted @ 2023-04-27 11:13 龙卷风吹毁停车场 阅读(1143) 评论(0) 推荐(0)
摘要: 在components中新建文件 iconSvg新建index.vue <template> <svg aria-hidden="true" class="svg-icon" v-bind="$attrs" @click="svgChong"> <use :xlink:href="icon" /> 阅读全文
posted @ 2023-04-27 11:08 龙卷风吹毁停车场 阅读(283) 评论(0) 推荐(0)
摘要: 在assets下新建tool.js文件 function countDownFun(time) { time--; let nowTime = new Date().getTime(); // 获取当前时间 if (time >= nowTime) { var secondTime = 0 //秒 阅读全文
posted @ 2023-04-27 10:30 龙卷风吹毁停车场 阅读(500) 评论(0) 推荐(0)
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 44 下一页