| 12345678910111213141516171819202122232425262728293031 |
- <template>
- <div>
- 首页
- </div>
- </template>
- <script>
- import {
- Domestic,
- } from '../../api/user.js';
- export default {
- onLoad() {
- getList();
- },
- data() {
- return {
-
- }
- },
- methods:{
- getList () {
- Domestic().then(res => {
- console.log(res,'res')
- })
- }
- }
- }
- </script>
- <style>
- </style>
|