PeriodicInspection.vue 262 字节 编辑Web IDE 1 2 3 4 5 6 7 8 9 10 11 12 13 14 <template> <div>定期检查</div> </template> <script lang="ts"> import { Component, Vue } from "vue-property-decorator"; @Component({ name: "PeriodicInspection", }) export default class PeriodicInspection extends Vue {} </script> <style scoped></style>