| | |
| | | <tools></tools> |
| | | <preference></preference> |
| | | <desktop></desktop> |
| | | <tools-entry></tools-entry> |
| | | <dock ref="dock_model"></dock> |
| | | <notice-tip ref="notice_tip_model"></notice-tip> |
| | | <notification-center></notification-center> |
| | |
| | | import NotificationCenter from './components/NotificationCenter'; |
| | | import NoticeTip from './components/NoticeTip'; |
| | | import Tools from './components/Tools'; |
| | | import ToolsEntry from './components/ToolsEntry'; |
| | | import axios from 'axios' |
| | | |
| | | export default { |
| | | name: 'app', |
| | | components: { |
| | | Desktop, Dock, Preference, NotificationCenter, NoticeTip, Tools |
| | | Desktop, Dock, Preference, NotificationCenter, NoticeTip, Tools, ToolsEntry |
| | | }, |
| | | mounted() { |
| | | document.getElementById('app').style.backgroundImage = process.env.VUE_APP_MAIN_URL; |
| | |
| | | width: 100%; |
| | | height: 100%; |
| | | background-size: 100% 100%; |
| | | background-image: url("../../../assets/img/desktop/main.jpg"); |
| | | background-image: url("../../../assets/img/desktop/desktop.png"); |
| | | background-attachment: fixed; |
| | | } |
| | | |
| | | .clearFix:after{ |
| | | content: ''; |
| | | display: block; |
| | | height: 0; |
| | | clear: both; |
| | | } |
| | | </style> |