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 d2ef6ee commit 0c9b0d7Copy full SHA for 0c9b0d7
src/main.ts
@@ -1,12 +1,16 @@
1
+import '@/Libraries/fontawesome';
2
import App from './App.vue';
3
import CodeBlock from 'vue3-code-block';
4
import { createApp } from 'vue';
5
import { createPinia } from 'pinia';
6
import { registerPlugins } from './plugins';
7
+import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome';
8
9
const app = createApp(App);
10
app.use(CodeBlock);
11
app.use(createPinia());
12
+app.component('font-awesome-icon', FontAwesomeIcon);
13
+app.component('FaIcon', FontAwesomeIcon);
14
15
registerPlugins(app);
16
0 commit comments