mirror of
https://gitee.com/dromara/go-view.git
synced 2026-07-24 15:45:37 +08:00
Compare commits
No commits in common. "0fb8b3adf6be567ac0a59c9b56af2ec837a135ce" and "48e63b677fd41981aedc65e1fab9066b4c2fd36c" have entirely different histories.
0fb8b3adf6
...
48e63b677f
@ -25,7 +25,7 @@ export const isDev = () => {
|
||||
* @param { Number } randomLength
|
||||
*/
|
||||
export const getUUID = (randomLength = 10) => {
|
||||
return 'id_' + Number(Math.random().toString().substring(2, randomLength) + Date.now()).toString(36)
|
||||
return Number(Math.random().toString().substring(2, randomLength) + Date.now()).toString(36)
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -1,7 +1,6 @@
|
||||
<template>
|
||||
<div
|
||||
class="chart-item"
|
||||
:id="item.id"
|
||||
v-for="(item, index) in chartEditStore.componentList"
|
||||
:class="animationsClass(item.styles.animations)"
|
||||
:key="item.id"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user