vproto.js 215 Bytes RawBlameHistoryPermalink 1 2 3 4 5 6 7 8 9 10 11 12 13 import Vue from 'vue' /* 获取本地存储 */ Vue.prototype.getStorage = (key) => { let storageVal = ''; uni.getStorage({ key: key, success: (res) => { storageVal = res.data; } }) return storageVal }