1
0

Micro.vue 794 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <template>
  2. <div></div>
  3. </template>
  4. <style type="text/css" scoped>
  5. body {
  6. background-color: #ECECEC;
  7. }
  8. .bg-alt {
  9. background-color: #2C2E3B;
  10. }
  11. .cursor-pointer {
  12. cursor: pointer;
  13. }
  14. .ql-container {
  15. font-size: 14px;
  16. }
  17. </style>
  18. <script type="text/javascript">
  19. export default {
  20. data() {
  21. return {
  22. footer: {
  23. about: '/site/about',
  24. help: '/site/help',
  25. classic: '/'
  26. },
  27. loading: true,
  28. profile: {},
  29. page: 1,
  30. activeFeed: 'home',
  31. homeFeed: [],
  32. notifications: {},
  33. composeType: false,
  34. notes: {
  35. active: false,
  36. status_id: null,
  37. username: null,
  38. like_count: 0,
  39. share_count: 0,
  40. replies: [],
  41. page: 1
  42. },
  43. profileCard: {
  44. account: {
  45. avatar: null
  46. }
  47. },
  48. quill: false,
  49. searching: false
  50. };
  51. }
  52. }
  53. </script>