20 lines
320 B
Vue
20 lines
320 B
Vue
<template>
|
|
<section class="custom-page"> 生产经销商管理 </section>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref } from 'vue';
|
|
|
|
/* --------------- data --------------- */
|
|
// #region
|
|
|
|
// #endregion
|
|
|
|
/* --------------- methods --------------- */
|
|
// #region
|
|
|
|
// #endregion
|
|
</script>
|
|
|
|
<style lang="scss" scoped></style>
|