dark to light
parent
a90690a115
commit
ff2e2e6250
|
@ -13,7 +13,7 @@
|
||||||
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, viewport-fit=cover">
|
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, viewport-fit=cover">
|
||||||
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
|
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
|
||||||
<title>PrimeVUE</title>
|
<title>PrimeVUE</title>
|
||||||
<link id="theme-link" rel="stylesheet" href="<%= BASE_URL %>themes/lara-dark-indigo/theme.css">
|
<link id="theme-link" rel="stylesheet" href="<%= BASE_URL %>themes/lara-light-indigo/theme.css">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
|
|
@ -40,7 +40,7 @@ export default {
|
||||||
return {
|
return {
|
||||||
sidebarActive: false,
|
sidebarActive: false,
|
||||||
newsActive: true,
|
newsActive: true,
|
||||||
theme: 'lara-dark-indigo'
|
theme: 'lara-light-indigo'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
|
|
|
@ -118,7 +118,7 @@ router.beforeEach(function (to, from, next) {
|
||||||
|
|
||||||
const app = createApp(App);
|
const app = createApp(App);
|
||||||
|
|
||||||
app.config.globalProperties.$appState = reactive({darkTheme: true, codeSandbox: false, sourceType: 'options-api'});
|
app.config.globalProperties.$appState = reactive({darkTheme: false, codeSandbox: false, sourceType: 'options-api'});
|
||||||
|
|
||||||
app.use(PrimeVue, {ripple: true});
|
app.use(PrimeVue, {ripple: true});
|
||||||
app.use(ToastService);
|
app.use(ToastService);
|
||||||
|
|
Loading…
Reference in New Issue