1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <template>
- <div></div>
- </template>
- <style type="text/css" scoped>
- body {
- background-color: #ECECEC;
- }
- .bg-alt {
- background-color: #2C2E3B;
- }
- .cursor-pointer {
- cursor: pointer;
- }
- .ql-container {
- font-size: 14px;
- }
- </style>
- <script type="text/javascript">
- export default {
- data() {
- return {
- footer: {
- about: '/site/about',
- help: '/site/help',
- classic: '/'
- },
- loading: true,
- profile: {},
- page: 1,
- activeFeed: 'home',
- homeFeed: [],
- notifications: {},
- composeType: false,
- notes: {
- active: false,
- status_id: null,
- username: null,
- like_count: 0,
- share_count: 0,
- replies: [],
- page: 1
- },
- profileCard: {
- account: {
- avatar: null
- }
- },
- quill: false,
- searching: false
- };
- }
- }
- </script>
|