This commit is contained in:
姚宇浩 2024-06-20 13:19:17 +08:00
parent ce1e93e09e
commit bbfb3f8c1b
1 changed files with 1 additions and 1 deletions

View File

@ -1429,7 +1429,7 @@ const colorList = [
{ color2: "rgba(76,174,254,1)" }, { color2: "rgba(76,174,254,1)" },
]; ];
const bt = computed(() => { const bt = computed(() => {
return function (index) { return (index)=> {
let str = `--i:${colorList[index].color2}`; let str = `--i:${colorList[index].color2}`;
return str; return str;
}; };