1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <template>
- <div id="app">
- <router-view />
- </div>
- </template>
- <script>
- export default {
- data() {
- return {};
- },
- };
- </script>
- <style lang="less">
- div {
- -moz-user-select: none; /*火狐*/
- -webkit-user-select: none; /*webkit浏览器*/
- -ms-user-select: none; /*IE10*/
- -khtml-user-select: none; /*早期浏览器*/
- user-select: none;
- }
- body,
- html {
- margin: 0;
- padding: 0;
- width: 100%;
- height: 100%;
- }
- #app {
- width: 100%;
- height: 100%;
- }
- .el-color-dropdown__btns{
- .el-color-dropdown__link-btn{
- display: none;
- }
- }
- .cololorSelect {
- border: 1px solid #e6e6e6;
- }
- </style>
|