gpt4 book ai didi

vue.js - 创建 JustGauge Vue 组件

转载 作者:搜寻专家 更新时间:2023-10-30 22:47:42 25 4
gpt4 key购买 nike

我正在做一个 Vue.js 项目,我需要这个 Download Chart

我试着创建一个这样的组件。

import '../../../assets/js/lib/gauge/justgage.js';
import '../../../assets/js/lib/gauge/raphael.min.js';


Vue.component('justgauge', {
name: 'justgauge',
mounted () {
var g1;

document.addEventListener("DOMContentLoaded", function(event) {
g1 = new JustGage({
id: "justgauge",
value: 72,
//title: "Completed",
fill: '#ffa726',
symbol: '%',
min: 0,
max: 100,
donut: true,
gaugeWidthScale: 0.4,
counter: true,
hideInnerShadow: true
});
});
}
})

我收到这样的错误-

仪表/raphael.min.js 模块构建失败:语法错误:在严格模式下删除局部变量 (10:22810)

注意:我在我的本 map 书馆中使用了 Justgauge.js 和 raphael。非常感谢任何帮助。

最佳答案

我为 Vue Js 制作了一个 JustGage 组件。你可以在这里找到它: https://github.com/agronick/KGauge

你想要的仪表看起来像这样:

      <k-gauge
title="Completed"
:value="72"
:color-steps="['#ffa726']"
:width="500"
:height="300"
:max="100"
:gauge-size="0.4"
:format-function="(x) => `${x.toFixed(2)}%`"
:show-min-max="false"
:doughnut="true"
:shadow-opacity="0"
/>

关于vue.js - 创建 JustGauge Vue 组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49528926/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com