inStoreRecord.vue 397 B

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