20 lines
305 B
Vue
20 lines
305 B
Vue
|
|
||
|
|
||
|
<template>
|
||
|
<div class="container">
|
||
|
<custom-title class="title-block" title="人脸核验">
|
||
|
</custom-title>
|
||
|
<div class="main"></div>
|
||
|
</div>
|
||
|
</template>
|
||
|
<script setup lang="ts">
|
||
|
|
||
|
</script>
|
||
|
<style scoped lang="scss">
|
||
|
.container{
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
height: 100vh;
|
||
|
}
|
||
|
</style>
|