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.
55 lines
723 B
55 lines
723 B
<template> |
|
<div class="Test"> |
|
<Uploader/> |
|
</div> |
|
</template> |
|
<script> |
|
|
|
import ConfirmDialog from "../components/dialog/ConfirmDialog"; |
|
import Search from "../components/Search"; |
|
import Uploader from "./me/Uploader"; |
|
|
|
export default { |
|
name: "Test", |
|
components: { |
|
Uploader |
|
}, |
|
props: {}, |
|
data() { |
|
return { |
|
showFollowSetting: true, |
|
switches1: true, |
|
t: '' |
|
} |
|
}, |
|
computed: {}, |
|
created() { |
|
}, |
|
methods: {} |
|
} |
|
</script> |
|
|
|
<style scoped lang="less"> |
|
@import "../assets/scss/index"; |
|
|
|
|
|
.Test { |
|
position: fixed; |
|
left: 0; |
|
right: 0; |
|
bottom: 0; |
|
top: 0; |
|
overflow: auto; |
|
font-size: 1.4rem; |
|
|
|
.content { |
|
padding-top: 6rem; |
|
|
|
.private-chat { |
|
|
|
} |
|
} |
|
|
|
|
|
} |
|
</style>
|
|
|