food/src/components/PlaneStatus.vue

39 lines
377 B
Vue
Raw Normal View History

2023-09-20 21:33:11 +08:00
<template>
<div>
</div>
2023-09-20 21:33:11 +08:00
</template>
<script>
export default {
name: 'PlaneStatus',
data () {
return {
}
},
props: {
plane: {
typeof: 'Object',
deep: true
}
},
2023-09-20 21:33:11 +08:00
components: {
2023-09-20 21:33:11 +08:00
},
computed: {
},
watch: {
},
methods: {},
created () {
2023-09-20 21:33:11 +08:00
}
}
</script>
<style lang="scss" scoped>
@import "@/styles/theme.scss";
</style>