| 12345678910111213141516171819202122232425262728293031323334353637 |
- <template>
- <div id="main" style="height:100%;width:100%;">
- </div>
- </template>
- <script>
- import request from "../../utils/gw_ajax_request.js"
- export default {
- components: {
- },
- props: [],
- data() {
- return {
- }
- },
- activated: function() {
- },
- mounted() {
- },
- beforeRouteLeave (to, from, next) {
- },
- methods:{
- },
- }
- </script>
- <style>
- </style>
|