index.vue 363 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <view class="content">
  3. <web-view src="https://4dscene.4dage.com/culturalrelics/NHBWG/index.html#/" />
  4. </view>
  5. </template>
  6. <script lang="ts">
  7. import Vue from 'vue';
  8. export default Vue.extend({
  9. data() {
  10. return {
  11. title: 'Hello'
  12. }
  13. },
  14. onLoad() {
  15. },
  16. methods: {
  17. }
  18. });
  19. </script>
  20. <style>
  21. .content {
  22. width: 100%;
  23. height: 100%;
  24. }
  25. </style>