website.vue 360 B

12345678910111213141516171819202122232425
  1. <template>
  2. <view class="app-page"><web-view :src="webUrl"></web-view></view>
  3. </template>
  4. <script>
  5. export default {
  6. data() {
  7. return {
  8. title: '',
  9. webUrl: ''
  10. };
  11. },
  12. onLoad(e) {
  13. const { title, url } = JSON.parse(e.query.data);
  14. this.webUrl = url;
  15. this.fnSetPageTitle(title);
  16. }
  17. };
  18. </script>
  19. <style scoped>
  20. .app-page {
  21. width: 100vw;
  22. }
  23. </style>