30 lines
398 B
Vue
30 lines
398 B
Vue
|
<!--
|
||
|
filename: index.vue
|
||
|
author: liubin
|
||
|
date: 2023-09-04 09:34:52
|
||
|
description: 设备产量时序图
|
||
|
-->
|
||
|
|
||
|
<template>
|
||
|
<div class="app-container">
|
||
|
设备产量时序图
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: "SGProduction",
|
||
|
components: {},
|
||
|
props: {},
|
||
|
data() {
|
||
|
return {}
|
||
|
},
|
||
|
computed: {},
|
||
|
methods: {},
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped lang="scss">
|
||
|
|
||
|
</style>
|