本文主要是介绍webView跳回小程序,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
<template><div class="wrap"><el-button class="back-btn" type="primary" @click="handleClick">返回小程序</el-button></div>
</template><script>
export default {created(){const s = document.createElement('script');s.type = 'text/javascript';s.src = 'https://res.wx.qq.com/open/js/jweixin-1.3.0.js';document.body.appendChild(s);},methods: {handleClick:_=> {wx.miniProgram.switchTab({url: '/pages/views/personal'});}}
};
</script><style lang="scss" scoped>
.wrap {width: 100vw;height: 100vh;display: flex;align-items: center;justify-content: center;
}
</style>
这篇关于webView跳回小程序的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!