123456789101112131415161718192021 |
- <template>
- <web-view class="webview" :src="decodeURIComponent(src)"></web-view>
- </template>
- <script>
- export default {
- data() {
- return {
- src: encodeURIComponent(""),
- };
- },
- onLoad: function (option) {
- this.src = `${option.src}?token=${option.token}&name=${option.name}&code=${option.code}`;
- },
- };
- </script>
- <style lang="scss">
- .webview {
- }
- </style>
|