26 lines
342 B
Vue
26 lines
342 B
Vue
<!--
|
|
filename: edit.vue
|
|
author: liubin
|
|
date: 2023-07-19 09:00:04
|
|
description:
|
|
-->
|
|
|
|
<template></template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "BomTechAndFiringEdit",
|
|
components: {},
|
|
props: {},
|
|
data() {
|
|
return {}
|
|
},
|
|
computed: {},
|
|
methods: {},
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
|
|
</style>
|