使用情景划栓,vue頁面需要加一個微信公眾號訂閱按鈕
// article.vue
<div class="btn-box">
<template>
<wx-open-subscribe template="xxx訂閱模板" id="subscribe-btn">
<!-- <script type="text/wxtag-template" slot="style">
<style>
.subscribe-btn {
color: #fff;
background-color: #07c160;
}
</style>
</script> -->
<script type="text/wxtag-template">
<button class="link-btn">
訂閱
</button>
</script>
</wx-open-subscribe>
</template>
</div>
這樣是會報錯的澎灸,會提示wx-open-subscribe這個組件沒注冊唾糯。
所以為了解決這個問題爽撒,需要將它忽略:
// main.js
Vue.config.ignoredElements = ['wx-open-subscribe']