mirror of
https://github.com/ecomfe/vue-echarts.git
synced 2025-10-27 10:55:07 +08:00
11 lines
220 B
TypeScript
11 lines
220 B
TypeScript
import { useDark } from "@vueuse/core";
|
|
|
|
export function useDemoDark() {
|
|
return useDark({
|
|
storageKey: "vue-echarts-demo-theme",
|
|
valueLight: "light",
|
|
valueDark: "dark",
|
|
disableTransition: false,
|
|
});
|
|
}
|