This commit is contained in:
feng0207
2026-08-11 22:22:10 +08:00
commit 5e312c1266
6985 changed files with 1061169 additions and 0 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 898 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 943 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 862 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

+17
View File
@@ -0,0 +1,17 @@
import store from '@/store'
export default {
install(Vue, options) {
if(options.developmentOff && process.env.NODE_ENV === 'development') return;
// Vue.config.errorHandler = (error, vm, mes) => {
// let info = {
// type: 'script',
// code: 0,
// mes: error.message,
// url: window.location.href
// };
// Vue.nextTick(() => {
// store.dispatch('addErrorLog', info)
// })
// }
}
}
+9
View File
@@ -0,0 +1,9 @@
import config from '@/config'
const { plugin } = config;
export default (Vue) => {
for (let name in plugin) {
const value = plugin[name];
Vue.use(require(`./${name}`).default, typeof value === 'object' ? value : undefined)
}
}