| 12345678910111213141516171819202122232425 |
- <template>
- <web-view :src="src" @bindload="loadData" :fullscreen="false"></web-view>
- </template>
- <script>
- export default {
- data() {
- return {
- src: ""
- }
- },
- onLoad(options) {
- this.src = options.src
- console.log(this.src)
- },
- methods: {
- loadData() {
- console.log(11111)
- }
- }
- }
- </script>
- <style>
- </style>
|