This commit is contained in:
syuilo 2020-07-24 13:31:15 +09:00
parent d4e6af00d9
commit 0007f4915e
2 changed files with 12 additions and 1 deletions

View File

@ -0,0 +1,10 @@
<template>
<svg><use xlink:href="#fas-fa-xxxxxxx" class="icon"></use></svg>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
export default defineComponent({
});
</script>

View File

@ -6,12 +6,13 @@ import { createApp } from 'vue';
import VueMeta from 'vue-meta';
import VAnimateCss from 'v-animate-css';
import { createI18n } from 'vue-i18n';
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome';
//import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome';
import { AiScript } from '@syuilo/aiscript';
import { deserialize } from '@syuilo/aiscript/built/serializer';
import VueHotkey from './scripts/hotkey';
import Root from './root.vue';
import FontAwesomeIcon from './components/fa.vue';
import Stream from './scripts/stream';
import widgets from './widgets';
import { version, langs, getLocale, apiUrl } from './config';