iceshrimp-legacy/src/web/app/desktop/views/components/settings-window.vue

19 lines
351 B
Vue
Raw Normal View History

2018-02-13 00:24:44 +01:00
<template>
2018-02-13 10:13:31 +01:00
<mk-window is-modal width='700px' height='550px' @closed="$destroy">
2018-02-13 00:24:44 +01:00
<span slot="header" :class="$style.header">%fa:cog%設定</span>
2018-02-19 08:18:18 +01:00
<mk-settings/>
2018-02-13 00:24:44 +01:00
</mk-window>
</template>
2018-02-18 15:51:41 +01:00
<script lang="ts">
import Vue from 'vue';
export default Vue.extend({});
</script>
2018-02-13 00:24:44 +01:00
<style lang="stylus" module>
.header
> [data-fa]
margin-right 4px
</style>