diff --git a/src/css/global.sass b/src/css/global.sass index b0baf45..8401e9e 100644 --- a/src/css/global.sass +++ b/src/css/global.sass @@ -149,3 +149,6 @@ body html height: 100% + +.vc-hue-slider__bar + background: linear-gradient(to right, red 0%, yellow 16.66%, lime 33.33%, aqua 50%,blue 66.66%,fuchsia 83.33%,red 100%) diff --git a/src/main.ts b/src/main.ts index c49a783..b40ec1c 100644 --- a/src/main.ts +++ b/src/main.ts @@ -4,4 +4,6 @@ import router from './router' import {i18n} from "@/messages"; import '@fortawesome/fontawesome-free/css/all.min.css' -createApp(App).use(router).use(i18n).mount('#app') +const app = createApp(App).use(router).use(i18n) +// app.config.performance = true +app.mount('#app')