Commit 05c3cbad authored by 郭铭瑶's avatar 郭铭瑶 🤘

修改a019

parent df274e39
/**
* 引入所有组件和eventBus并暴露出去
*/
import { App, Plugin } from 'vue'
import EventBus from './util/event-bus'
import * as componentLib from '@/lib/index'
......
/**
* 打包后暴露引用方法供大屏项目用
*/
import { components, eventBus } from './entry.esm'
export default function (url: string) {
......
......@@ -19,7 +19,10 @@
<div
v-for="item in list"
:key="item.name"
:style="{ flex: item.rate, background: item.color }"
:style="{
flex: item.rate <= 0 ? 1 : item.rate,
background: item.color,
}"
>
<div :style="{ borderColor: item.color }">
<p>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment