webview.vue 275 B

12345678910111213141516171819
  1. <!-- 外链,webview -->
  2. <template>
  3. <view><web-view :src="webviewPath"></web-view></view>
  4. </template>
  5. <script>
  6. export default {
  7. data() {
  8. return {
  9. webviewPath: ''
  10. };
  11. },
  12. onLoad() {
  13. this.webviewPath = this.$Route.query.webviewPath;
  14. }
  15. };
  16. </script>
  17. <style></style>