App.vue 610 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <template>
  2. <div id="app">
  3. <router-view />
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {};
  10. },
  11. };
  12. </script>
  13. <style lang="less">
  14. div {
  15. -moz-user-select: none; /*火狐*/
  16. -webkit-user-select: none; /*webkit浏览器*/
  17. -ms-user-select: none; /*IE10*/
  18. -khtml-user-select: none; /*早期浏览器*/
  19. user-select: none;
  20. }
  21. body,
  22. html {
  23. margin: 0;
  24. padding: 0;
  25. width: 100%;
  26. height: 100%;
  27. }
  28. #app {
  29. width: 100%;
  30. height: 100%;
  31. }
  32. .el-color-dropdown__btns{
  33. .el-color-dropdown__link-btn{
  34. display: none;
  35. }
  36. }
  37. .cololorSelect {
  38. border: 1px solid #e6e6e6;
  39. }
  40. </style>