22 lines
337 B
Vue
22 lines
337 B
Vue
<template>
|
|
<div>
|
|
<CardData title="环境监测">
|
|
<div class="contentBox">
|
|
123
|
|
</div>
|
|
</CardData>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import CardData from "../components/cardData";
|
|
export default {
|
|
components: { CardData },
|
|
data() {
|
|
return {};
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
</style> |