index.vue 251 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. this.url = decodeURIComponent(options.url);
  13. },
  14. };
  15. </script>
  16. <style lang="scss"></style>