15 lines
250 B
Vue
15 lines
250 B
Vue
<template>
|
||
<notice-detail :is-edit='true'></notice-detail>
|
||
</template>
|
||
<script>
|
||
import NoticeDetail from './components/NoticeDetail'
|
||
export default {
|
||
name: 'updateNotice',
|
||
components: { NoticeDetail }
|
||
}
|
||
</script>
|
||
<style>
|
||
</style>
|
||
|
||
|