refactor: update examples

This commit is contained in:
Łukasz Holeczek
2021-08-30 00:44:20 +02:00
parent e3dd33a2f8
commit 0f2cb6c1db
40 changed files with 334 additions and 754 deletions
+4 -2
View File
@@ -6,7 +6,8 @@ import store from "./store";
import CoreuiVue from "@coreui/vue";
import { CIcon } from "@coreui/icons-vue";
import { iconsSet as icons } from "@/assets/icons/icons.js";
import Example from "@/components/Example";
import DocsCallout from "@/components/DocsCallout";
import DocsExample from "@/components/DocsExample";
const app = createApp(App);
@@ -15,6 +16,7 @@ app.use(router);
app.use(CoreuiVue);
app.provide('icons', icons);
app.component("CIcon", CIcon);
app.component("Example", Example);
app.component("DocsCallout", DocsCallout);
app.component("DocsExample", DocsExample);
app.mount("#app");