Files
AIProd/pages/AIHub/index.vue
2025-10-24 15:45:38 +08:00

68 lines
1.3 KiB
Vue

<template>
<div id="normal-container">
<IntegratedLayout>
<div class="content">
<div class="bread-menu">
<span>AI Hub</span>
<i class="el-icon-arrow-right"></i>
<span class="crumbs gradient-color">{{$route.name}}</span>
</div>
<div class="top-text">
<div class="title">
{{$route.name}}
</div>
<div class="description">
A comprehensive collection of cutting-edge AI tools, featuring detailed explanations of their
functionalities, practical usage, and real-world application scenarios. Quickly grasp emerging
product trends and learn how each tool can be leveraged for work, research, or creative projects.
</div>
</div>
<nuxt-child />
</div>
</IntegratedLayout>
</div>
</template>
<script>
export default {
data() {
return {}
},
computed: {
},
created() {
console.log(this.$route)
},
methods: {
// 方法
}
}
</script>
<style lang="scss" scoped>
.content {
padding-bottom: 100px;
.bread-menu {
font-size: $mid-font-size;
margin: 100px 0;
font-family: 'Poppins-Medium', serif;
.crumbs {
font-family: 'Poppins-SemiBold', serif;
font-weight: 600;
}
}
.title {
font-weight: bold;
font-size: $huge-font-size1;
}
.description {
font-size: $big-font-size;
color: $grey-color;
}
}
</style>