34 lines
471 B
Vue
34 lines
471 B
Vue
<template lang="html">
|
|
<div style="background-color: #f2f2f2; min-height: 100vh">
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import axios from "axios";
|
|
export default {
|
|
data() {
|
|
return {
|
|
url: "",
|
|
user: {},
|
|
};
|
|
},
|
|
activated() {
|
|
|
|
|
|
},
|
|
|
|
mounted() {this.getInit();},
|
|
methods: {
|
|
getInit() {
|
|
this.$toast.fail("维护中...");
|
|
},
|
|
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|
|
|