123456789101112131415161718192021 |
- <template>
- <ww-open-data :type="type" :openid="openid" />
- </template>
- <script>
- export default {
- name: "wwOpenDAta",
- props: ["type", "openid"],
- watch: {
- openid(item) {
- this.$nextTick(() => {
- window.WWOpenData.bind(this.$el);
- });
- }
- },
- mounted() {
- this.$nextTick(() => {
- window.WWOpenData.bind(this.$el);
- });
- },
- };
- </script>
|