123456789101112131415161718192021222324252627282930 |
- <template>
- <view>
- <nav-header></nav-header>
- <web-view :webview-styles="webviewStyles" :src="path"></web-view>
- </view>
- </template>
- <script>
- import navHeader from "@/components/my/nav_header.vue"
- export default {
- components:{navHeader},
- data() {
- return {
- webviewStyles: {
- progress: {
-
- }
- },
- path:""
- }
- },
- onLoad(e) {
- this.path = e.path
- }
- }
- </script>
- <style>
- </style>
|