# qsn **Repository Path**: helloMyCode888/qsn ## Basic Information - **Project Name**: qsn - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-04-30 - **Last Updated**: 2024-05-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### uniapp基础开发框架 依赖: ` npm i ` #### npm 模块: `u-view ` ```html ``` `weixin SDK: ` ```javascript data() { return { weixin: require('jweixin-module') } }, onLoad() { this.login(); }, methods: { async login() { this.weixin.config({ debug: false, // 开启调试模式 appId: '', // 必填,公众号的唯一标识 timestamp: , // 必填,生成签名的时间戳 nonceStr: '', // 必填,生成签名的随机串 signature: '', // 必填,签名 jsApiList: [] // 必填,需要使用的JS接口列表 }); this.weixin.ready(() => { console.log("微信ready!"); }) } } ```