123456789101112131415161718192021222324252627282930 |
- <template>
- <view class="content">
- <web-view src="https://4dscene.4dage.com/culturalrelics/NHBWG/index.html#/" />
- </view>
- </template>
- <script lang="ts">
- import Vue from 'vue';
- export default Vue.extend({
- data() {
- return {
- title: 'Hello'
- }
- },
- onLoad() {
- },
- methods: {
- }
- });
- </script>
- <style>
- .content {
- width: 100%;
- height: 100%;
- }
- </style>
|