mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 07:23:08 +02:00
25 lines
439 B
Vue
25 lines
439 B
Vue
|
<template>
|
||
|
<mk-window ref="window" width="450px" height="500px" @closed="destroyDom">
|
||
|
<span slot="header"><fa icon="list"/> {{ list.title }}</span>
|
||
|
|
||
|
<x-editor :list="list"/>
|
||
|
</mk-window>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import Vue from 'vue';
|
||
|
import XEditor from '../../../common/views/components/user-list-editor.vue';
|
||
|
|
||
|
export default Vue.extend({
|
||
|
components: {
|
||
|
XEditor
|
||
|
},
|
||
|
|
||
|
props: {
|
||
|
list: {
|
||
|
required: true
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
</script>
|