Vue.component("gzip-box", { props: ["v-gzip-config"], data: function () { let gzip = this.vGzipConfig if (gzip == null) { gzip = { isOn: true, level: 0, minLength: null, maxLength: null } } return { gzip: gzip, } }, template: `
压缩级别

级别越高,压缩比例越大。

Gzip内容最小长度

0表示不限制,内容长度从文件尺寸或Content-Length中获取。

Gzip内容最大长度

0表示不限制,内容长度从文件尺寸或Content-Length中获取。

` })