123456789101112131415161718192021222324252627 |
- <template>
- <view>
- <web-view :webview-styles="webviewStyles" :src="articleurl"></web-view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- articleurl: '',
- webviewStyles: {
- progress: {
- color: '#FF7200'
- }
- }
- };
- },
- onLoad(options) {
- this.articleurl = 'http://www.baidu.com/';
- }
- }
- </script>
- <style>
- </style>
|