webview.vue 300 B

1234567891011121314151617181920
  1. <template>
  2. <web-view :src="decodeURIComponent(src)"></web-view>
  3. </template>
  4. <script>
  5. export default {
  6. data() {
  7. return {
  8. src: encodeURIComponent('https://sqxh.zzxcx.net')
  9. };
  10. },
  11. onLoad: function (option) {
  12. this.src = option.src;
  13. }
  14. }
  15. </script>
  16. <style lang="scss">
  17. </style>