mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-29 16:12:55 +00:00
fix: 修复节点缩放文字模糊问题
This commit is contained in:
parent
b49a461f65
commit
ab8844b0a1
|
|
@ -123,4 +123,7 @@ const props = defineProps<{
|
|||
.outgoing-anchor {
|
||||
stroke: #82b366;
|
||||
}
|
||||
:deep(.el-card) {
|
||||
overflow: visible;
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -1,12 +1,13 @@
|
|||
import Components from '@/components'
|
||||
import ElementPlus from 'element-plus'
|
||||
import * as ElementPlusIcons from '@element-plus/icons-vue'
|
||||
import { HtmlNode, HtmlNodeModel, BaseEdge } from '@logicflow/core'
|
||||
|
||||
import { HtmlResize } from '@logicflow/extension'
|
||||
import { createApp, h } from 'vue'
|
||||
import directives from '@/directives'
|
||||
import i18n from '@/locales'
|
||||
|
||||
class AppNode extends HtmlNode {
|
||||
class AppNode extends HtmlResize.view {
|
||||
isMounted
|
||||
r
|
||||
app
|
||||
|
|
@ -61,7 +62,7 @@ class AppNode extends HtmlNode {
|
|||
}
|
||||
}
|
||||
|
||||
class AppNodeModel extends HtmlNodeModel {
|
||||
class AppNodeModel extends HtmlResize.model {
|
||||
getOutlineStyle() {
|
||||
const style = super.getOutlineStyle()
|
||||
style.stroke = 'none'
|
||||
|
|
|
|||
Loading…
Reference in New Issue