feat: 初始化素材中心页面路由结构
This commit is contained in:
16
src/views/material-center/components/raw-material/index.vue
Normal file
16
src/views/material-center/components/raw-material/index.vue
Normal file
@ -0,0 +1,16 @@
|
||||
<script lang="tsx">
|
||||
export default defineComponent({
|
||||
setup(_, { attrs, slots, expose }) {
|
||||
|
||||
return () => (
|
||||
<div class="raw-material-wrap h-full flex flex-col">
|
||||
原材料库
|
||||
</div>
|
||||
);
|
||||
},
|
||||
});
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
@import './style.scss';
|
||||
</style>
|
||||
@ -0,0 +1,3 @@
|
||||
.raw-material-wrap {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user