9f5dc2c0df
* wip * Rename * Clean up * Clean up * wip * wip * Enable tree shaking * ✌️ * ✌️ * wip * wip * Clean up
31 lines
570 B
Vue
31 lines
570 B
Vue
<template>
|
|
<mk-window ref="window" is-modal width="700px" height="550px" @closed="destroyDom">
|
|
<span slot="header" :class="$style.header"><fa icon="cog"/>%i18n:@settings%</span>
|
|
<mk-settings :initial-page="initialPage" @done="close"/>
|
|
</mk-window>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
export default Vue.extend({
|
|
props: {
|
|
initialPage: {
|
|
type: String,
|
|
required: false
|
|
}
|
|
},
|
|
methods: {
|
|
close() {
|
|
(this as any).$refs.window.close();
|
|
}
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="stylus" module>
|
|
.header
|
|
> [data-icon]
|
|
margin-right 4px
|
|
|
|
</style>
|