| 12345678910111213141516171819 |
- <script>
- export default {
- name: 'webview',
- data() {
- return {
- src: ''
- }
- },
- onLoad() {
- ;({ url: this.src } = this.$store.state.params)
- }
- }
- </script>
- <template>
- <web-view :src="src" :update-title="true"></web-view>
- </template>
- <style lang="scss" scoped></style>
|