ad_reshui.vue 231 B

12345678910111213141516171819
  1. <template>
  2. <web-view :src="url" :progress="false"></web-view>
  3. </template>
  4. <script>
  5. export default {
  6. data() {
  7. return {
  8. url: 'https://www.chuanghai-tech.com/'
  9. }
  10. },
  11. methods: {
  12. }
  13. }
  14. </script>
  15. <style>
  16. </style>