You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
400 B
21 lines
400 B
<template>
|
|
<div class="pa-3 white fill-height d-flex flex-column">
|
|
<!-- <user-search />
|
|
<user-date />-->
|
|
开发中... ...
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
// @ is an alias to /src
|
|
import UserSearch from 'components/User/UserSearch.vue';
|
|
import UserDate from 'components/User/UserDate.vue';
|
|
|
|
export default {
|
|
name: 'Home',
|
|
components: {
|
|
UserSearch,
|
|
UserDate,
|
|
},
|
|
};
|
|
</script>
|
|
|