misskey/src/web/app/desktop/tags/settings-window.tag
2017-06-07 15:43:29 +09:00

31 lines
582 B
HTML

<mk-settings-window>
<mk-window ref="window" is-modal={ true } width={ '700px' } height={ '550px' }>
<yield to="header"><i class="fa fa-cog"></i>設定</yield>
<yield to="content">
<mk-settings/>
</yield>
</mk-window>
<style>
:scope
> mk-window
[data-yield='header']
> i
margin-right 4px
[data-yield='content']
overflow hidden
</style>
<script>
this.on('mount', () => {
this.refs.window.on('closed', () => {
this.unmount();
});
});
this.close = () => {
this.refs.window.close();
};
</script>
</mk-settings-window>