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