ruoyi-geek-App/pages/calc.vue

37 lines
522 B
Vue

<template>
<view class="content">
<ng-cal-tools></ng-cal-tools>
</view>
</template>
<script setup>
import {
ref,
onMounted
} from 'vue';
import ngCalTools from '@/pages_caltools/pages/index'
</script>
<style scoped lang="scss">
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.text-area {
display: flex;
justify-content: center;
}
.title {
font-size: 36rpx;
color: #8f8f94;
}
.charts-box {
width: 100%;
height: 300px;
}
</style>