多媒体信息发布平台
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.

27 lines
411 B

3 years ago
3 years ago
3 years ago
  1. <template>
  2. <div class="dashboard-container">
  3. <div class="dashboard-editor-container"></div>
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'Dashboard',
  9. components: {
  10. },
  11. data() {
  12. return {
  13. }
  14. },
  15. methods: {
  16. }
  17. }
  18. </script>
  19. <style rel="stylesheet/scss" lang="scss" scoped>
  20. .dashboard-editor-container {
  21. padding: 32px;
  22. background-color: #f5f5f5;
  23. position: relative;
  24. }
  25. </style>