mirror of https://github.com/sunface/rust-course
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.
25 lines
325 B
25 lines
325 B
6 years ago
|
<template>
|
||
|
<div class="setting-account margin-top-20">
|
||
|
<el-card shadow="hover">
|
||
|
<div>aaaa</div>
|
||
|
</el-card>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import request from "@/utils/request";
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
};
|
||
|
},
|
||
|
watch: {
|
||
|
},
|
||
|
methods: {
|
||
|
|
||
|
},
|
||
|
mounted() {
|
||
|
}
|
||
|
};
|
||
|
</script>
|