mirror of
http://112.124.100.131/ebiz-ai/ebiz-base-ai.git
synced 2025-12-06 17:36:48 +08:00
- 在路由中添加 /comparison 路径 - 创建产品对比页面和相关组件 - 实现产品对比数据展示和滚动处理 - 集成 Element UI 表格组件 - 优化页面样式和交互
22 lines
353 B
JavaScript
22 lines
353 B
JavaScript
module.exports = {
|
|
presets: [['@vue/app', { useBuiltIns: 'entry' }]],
|
|
plugins: [
|
|
[
|
|
'import',
|
|
{
|
|
libraryName: 'vant',
|
|
libraryDirectory: 'es',
|
|
style: true
|
|
},
|
|
'vant'
|
|
],
|
|
[
|
|
'component',
|
|
{
|
|
libraryName: 'element-ui',
|
|
styleLibraryName: 'theme-chalk'
|
|
}
|
|
]
|
|
]
|
|
}
|