Plugin system (#6479)

* wip

* wip

* wip

* wip

* Update store.ts
This commit is contained in:
syuilo
2020-07-12 00:38:55 +09:00
committed by GitHub
parent debc0086fa
commit 9b73e897df
13 changed files with 293 additions and 17 deletions

View File

@@ -9,6 +9,8 @@
<x-sidebar/>
<x-plugins/>
<section class="_card">
<div class="_title"><fa :icon="faMusic"/> {{ $t('sounds') }}</div>
<div class="_content">
@@ -115,6 +117,7 @@ import MkRadio from '../../components/ui/radio.vue';
import MkRange from '../../components/ui/range.vue';
import XTheme from './theme.vue';
import XSidebar from './sidebar.vue';
import XPlugins from './plugins.vue';
import { langs } from '../../config';
import { clientDb, set } from '../../db';
@@ -146,11 +149,12 @@ export default Vue.extend({
components: {
XTheme,
XSidebar,
XPlugins,
MkButton,
MkSwitch,
MkSelect,
MkRadio,
MkRange
MkRange,
},
data() {