1234567891011121314151617 |
- <template>
- <el-drawer class="instoreRecord" :size="600" append-to-body title="入库记录" :visible.sync="drawer" direction="rtl">
-
- </el-drawer>
- </template>
- <script lang="ts">
- import { Component, Prop, Vue, Watch } from "vue-property-decorator";
- @Component({components:{}})
- export default class InStoreRecord extends Vue {
- drawer=false
- }
- </script>
- <style scoped lang="scss">
- </style>
|