0eba9e87e9
- Disable formatting rules (handled by Prettier) - Relaxed strict Vue/JS rules for demo code compatibility - Fix syntax errors in ApiPlayground and VoiceCloningDemo - Fix duplicate else-if condition in ApiPlayground - Fix Promise executor async pattern in AutoregressiveAudioDemo - Add TypeScript file support to ESLint config Warnings reduced from 295 to 251 problems. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
57 lines
1.0 KiB
Vue
57 lines
1.0 KiB
Vue
|
|
<template>
|
|
<div class="demo-container">
|
|
<div class="demo-header">
|
|
<h4>{{ title }}</h4>
|
|
<p class="hint">
|
|
{{ description }}
|
|
</p>
|
|
</div>
|
|
<div class="demo-content">
|
|
<el-alert
|
|
type="info"
|
|
:closable="false"
|
|
>
|
|
电商缓存架构演示组件占位符 - 待实现具体交互
|
|
</el-alert>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref } from 'vue'
|
|
|
|
const title = ref('电商缓存架构演示')
|
|
const description = ref('展示电商系统中的多级缓存架构设计,包括商品缓存、库存缓存、用户缓存等')
|
|
</script>
|
|
|
|
<style scoped>
|
|
.demo-container {
|
|
border: 1px solid var(--vp-c-divider);
|
|
border-radius: 6px;
|
|
padding: 20px;
|
|
background: var(--vp-c-bg-soft);
|
|
}
|
|
|
|
.demo-header {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.demo-header h4 {
|
|
margin: 0 0 8px 0;
|
|
color: var(--vp-c-text-1);
|
|
}
|
|
|
|
.hint {
|
|
margin: 0;
|
|
font-size: 14px;
|
|
color: var(--vp-c-text-2);
|
|
}
|
|
|
|
.demo-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
}
|
|
</style>
|