15 lines
205 B
Vue
15 lines
205 B
Vue
<template>
|
|
<Card title="视频AI分析">
|
|
视频AI分析
|
|
</Card>
|
|
</template>
|
|
|
|
<script>
|
|
import Card from '../components/Card.vue'
|
|
export default {
|
|
components: { Card }
|
|
}
|
|
</script>
|
|
|
|
<style></style>
|