Sharkey/src/web/app/desktop/views/components/settings-window.vue
2018-02-19 16:18:18 +09:00

19 lines
351 B
Vue

<template>
<mk-window is-modal width='700px' height='550px' @closed="$destroy">
<span slot="header" :class="$style.header">%fa:cog%設定</span>
<mk-settings/>
</mk-window>
</template>
<script lang="ts">
import Vue from 'vue';
export default Vue.extend({});
</script>
<style lang="stylus" module>
.header
> [data-fa]
margin-right 4px
</style>