uztool 是uniapp的工具类,减少您对uniapp的操作大大减少了您的代码量
# npm 方式安装
npm i uz-tool
import {toast} from 'uz-tools'
// 成功图标
function success() {
toast('通知成功', 1, 2000)
}
// 失败图标
function error() {
toast('通知失败', 2, 2000)
}
// 无图标
function none() {
toast('无图标通知', 3, 2000)
toast('无图标通知')
}
import { getStorage, setStorage, cleatStorage } from 'uz-tool'
// 设置本地存储
setStorage('userID', 'id-123456789')
// 获取本地存储
getStorage('userID')
// 清除本地指定存储
cleatStorage('userID')
// 清除全部存储
cleatStorage()