We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23eb602 commit eb051b8Copy full SHA for eb051b8
src/main.ts
@@ -1,6 +1,7 @@
1
import { createApp } from 'vue';
2
import App from './App.vue';
3
import CodeBlock from './index';
4
+import { createPinia } from "pinia";
5
import { library } from '@fortawesome/fontawesome-svg-core';
6
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome';
7
import {
@@ -23,8 +24,7 @@ library.add({
23
24
});
25
26
createApp(App)
- .use(CodeBlock, {
27
- // theme: 'atom-one-dark',
28
- })
+ .use(CodeBlock, {})
+ .use(createPinia())
29
.component('fa-icon', FontAwesomeIcon)
30
.mount('#app');
0 commit comments