Browse Source

feat: fix ellipsis bug (#3644)

pull/3645/head
Mr.Dear 2 years ago
committed by GitHub
parent
commit
9372f1d159
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      src/components/EllipsisText/src/Tooltip.vue
  2. 1
      vite.config.ts

1
src/components/EllipsisText/src/Tooltip.vue

@ -121,6 +121,7 @@
pointer-events: none;
&::before {
content: ''; //
position: absolute;
bottom: 0;
inset-inline-start: 0;

1
vite.config.ts

@ -31,6 +31,7 @@ export default defineApplicationConfig({
rewrite: (path) => path.replace(new RegExp(`^/upload`), ''),
},
},
open: true, // 项目启动后,自动打开
warmup: {
clientFiles: ['./index.html', './src/{views,components}/*'],
},

Loading…
Cancel
Save