utils.js
export function getStorage(key) {
return uni.getStorageSync(key)
}
index.vue
<script setup>
import {getStorage} from '@/static/utils.js'
const title = getStorage('name')
</script>
产品分类: uniapp/小程序/微信
PC开发环境操作系统: Mac
PC开发环境操作系统版本号: 13.2.1 (22D68)
HBuilderX类型: 正式
HBuilderX版本号: 3.7.3
第三方开发者工具版本号: 1.06.2301171
基础库版本号: 2.30.2
项目创建方式: HBuilderX
utils.js
export function getStorage(key) {
return uni.getStorageSync(key)
}
index.vue
<script setup>
import {getStorage} from '@/static/utils.js'
const title = getStorage('name')
</script>
vue3 发布小程序报错 uni is not defined
utils.js 中使用uni,再引入到页面中,发行小程序-微信 后 微信开发者工具就会报uni is not defined
vue3版本 发行微信小程序 能在js 文件中正常使用uni
vue3 发布小程序报错 uni is not defined
vue3 发布小程序报错 uni is not defined
utils.js 中使用uni,再引入到页面中,发布的时候就会报uni is not defined