uni-Identify-quality/pages/contract/index.vue

19 lines
262 B
Vue
Raw Normal View History

2023-09-19 02:53:38 +00:00
<template>
<div>
<tabbar :current="2"></tabbar>合同</div>
</template>
2023-09-19 02:50:09 +00:00
<script>
2023-09-19 02:53:38 +00:00
import tabbar from "../../components/uiq-tabbar/uiq-tabbar.vue";
2023-09-19 02:50:09 +00:00
export default {
2023-09-19 02:53:38 +00:00
name: "index",
components: {tabbar}
2023-09-19 02:50:09 +00:00
}
</script>
2023-09-19 02:53:38 +00:00
2023-09-19 02:50:09 +00:00
<style scoped lang="scss">
</style>