Files
mallplus/mallplusui-web-admin/src/views/build/notice/update.vue
2023-02-11 12:55:02 +08:00

15 lines
250 B
Vue
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<template> 
<notice-detail :is-edit='true'></notice-detail>
</template>
<script>
import NoticeDetail from './components/NoticeDetail'
export default {
name: 'updateNotice',
components: { NoticeDetail }
}
</script>
<style>
</style>