You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
332 B

7 months ago
  1. <!-- 网页加载 -->
  2. <template>
  3. <view>
  4. <web-view :src="url" />
  5. </view>
  6. </template>
  7. <script setup>
  8. import { onLoad } from '@dcloudio/uni-app';
  9. import { ref } from 'vue';
  10. const url = ref('');
  11. onLoad((options) => {
  12. url.value = decodeURIComponent(options.url);
  13. });
  14. </script>
  15. <style lang="scss" scoped></style>