ad-interactive-webview.vue 284 B

123456789101112131415161718
  1. <template>
  2. <web-view :src="url"></web-view>
  3. </template>
  4. <script>
  5. export default {
  6. data() {
  7. return {
  8. url: ''
  9. }
  10. },
  11. onLoad(options) {
  12. if (options && options.url) {
  13. this.url = decodeURIComponent(options.url);
  14. }
  15. }
  16. }
  17. </script>