web.vue 253 B

12345678910111213141516
  1. <template>
  2. <web-view :src="url"></web-view>
  3. </template>
  4. <script setup>
  5. import { ref } from 'vue'
  6. import { onLoad } from '@dcloudio/uni-app'
  7. const url = ref('')
  8. onLoad((options) => {
  9. url.value = options.url
  10. })
  11. </script>
  12. <style lang="scss"></style>