diff --git a/.eslintrc.js b/.eslintrc.cjs similarity index 78% rename from .eslintrc.js rename to .eslintrc.cjs index fc9e572a..7d0be3d2 100644 --- a/.eslintrc.js +++ b/.eslintrc.cjs @@ -1,7 +1,9 @@ +/* eslint-env node */ module.exports = { extends: ["plugin:vue/vue3-essential", "eslint:recommended"], rules: { "no-console": process.env.NODE_ENV === "production" ? "warn" : "off", "no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off", + 'vue/multi-word-component-names': 'off', }, }; diff --git a/README.md b/README.md index 0307d814..f711b518 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,7 @@ CoreUI is meant to be the UX game changer. Pure & transparent code is devoid of * πŸ’ͺ [CoreUI PRO Angular Admin Template](https://coreui.io/product/angular-dashboard-template/) * πŸ’ͺ [CoreUI PRO Bootstrap Admin Template](https://coreui.io/product/bootstrap-dashboard-template/) +* πŸ’ͺ [CoreUI PRO Next.js Admin Template](https://coreui.io/product/next-js-dashboard-template/) * πŸ’ͺ [CoreUI PRO React Admin Template](https://coreui.io/product/react-dashboard-template/) * πŸ’ͺ [CoreUI PRO Vue Admin Template](https://coreui.io/product/vue-dashboard-template/) @@ -56,9 +57,9 @@ CoreUI is meant to be the UX game changer. Pure & transparent code is devoid of | --- | --- | | [![CoreUI PRO Vue Admin Template](https://coreui.io/images/templates/coreui_pro_default_light_dark.webp)](https://coreui.io/product/vue-dashboard-template/?theme=default) | [![CoreUI PRO Vue Admin Template](https://coreui.io/images/templates/coreui_pro_light_light_dark.webp)](https://coreui.io/product/vue-dashboard-template/?theme=light)| -| Default Theme v3 | Light Theme v3 | +| Modern Theme | Bright Theme | | --- | --- | -| [![CoreUI PRO Vue Admin Template](https://coreui.io/images/templates/coreui_pro_default_v3_light_dark.webp)](https://coreui.io/product/vue-dashboard-template/?theme=default-v3) | [![CoreUI PRO Vue Admin Template](https://coreui.io/images/templates/coreui_pro_light_v3_light_dark.webp)](https://coreui.io/product/vue-dashboard-template/?theme=light)| +| [![CoreUI PRO Vue Admin Template](https://coreui.io/images/templates/coreui_pro_default_v3_light_dark.webp)](https://coreui.io/product/vue-dashboard-template/?theme=modern) | [![CoreUI PRO Vue Admin Template](https://coreui.io/images/templates/coreui_pro_light_v3_light_dark.webp)](https://coreui.io/product/vue-dashboard-template/?theme=bright)| ## Quick Start @@ -122,7 +123,7 @@ coreui-free-vue-admin-template β”‚ β”œβ”€β”€ layouts/ # layout containers β”‚ β”œβ”€β”€ scss/ # scss styles β”‚ β”œβ”€β”€ router # routes config -β”‚ β”œβ”€β”€ store # template state example +β”‚ β”œβ”€β”€ stores/ # template state example β”‚ β”œβ”€β”€ views/ # application views β”‚ β”œβ”€β”€ _nav.js # sidebar navigation config β”‚ β”œβ”€β”€ App.vue @@ -130,7 +131,7 @@ coreui-free-vue-admin-template β”‚ └── main.js β”œβ”€β”€ index.html # html template β”œβ”€β”€ package.json -└── vite.config.js +└── vite.config.mjs ``` ## Documentation diff --git a/index.html b/index.html index 1c4aae12..5cb553c6 100644 --- a/index.html +++ b/index.html @@ -1,7 +1,7 @@