12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <template>
- <view class="realtimeWatch-container">
- <realMap></realMap>
- </view>
- </template>
- <script>
- // #ifdef H5
- import realMap from "./module/h5Map";
- // #endif
-
- /* 非h5未实现 */
- // #ifndef H5
- import realMap from "./module/appMap";
- // #endif
- export default {
- components: {
- realMap
- },
- data() {
- return {
- }
- },
- onLoad() {
-
- },
- onShow() {
-
- },
- onHide() {
-
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss" scoped>
- .realtimeWatch-container {
- width: 100%;
- height: 100vh;
- }
- </style>
|