12345678910111213141516171819202122232425262728 |
- <template>
- <view>
- <web-view :src="url" @message="callback"></web-view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- url: '',
- };
- },
- onLoad: function(option) {
- this.url = this.Dever.data('web_view');
- },
- onShow: function() {},
- methods: {
- callback(e) {
-
- },
- }
- };
- </script>
- <style>
- </style>
|