wx-open-launch-weapp的使用
时间: 2023-12-02 10:40:38 浏览: 562
wx-open-launch-weapp是一个微信小程序开放标签,可以在uni-app中使用。使用该标签可以在uni-app中打开微信小程序。具体使用方法如下:
1.在需要使用wx-open-launch-weapp标签的页面中引入该标签:
```html
<template>
<view>
<wx-open-launch-weapp id="launch-btn" username="gh_xxxxxxx" path="pages/index/index" ext="xxx"></wx-open-launch-weapp>
</view>
</template>
```
其中,id为该标签的唯一标识符,username为需要打开的小程序的原始ID,path为需要打开的小程序页面路径,ext为需要传递给小程序的参数。
2.在main.js中引入wx-open-launch-weapp标签:
```javascript
import Vue from 'vue'
import App from './App'
Vue.config.productionTip = false
// 引入wx-open-launch-weapp标签
Vue.config.ignoredElements.push('wx-open-launch-weapp')
App.mpType = 'app'
const app = new Vue({
...App
})
app.$mount()
```
注意:使用wx-open-launch-weapp标签需要在微信公众平台中进行相关配置,具体可以参考微信官方文档。
阅读全文