feat: add virtual resource payments and optimize images

This commit is contained in:
王鹏
2026-07-28 13:35:23 +08:00
parent ab281be02a
commit d14f005d34
35 changed files with 462 additions and 2125 deletions

View File

@@ -1,6 +1,7 @@
import tab from './tab'
import auth from './auth'
import modal from './modal'
import image from '@/utils/image'
export default {
install(Vue) {
@@ -10,5 +11,7 @@ export default {
Vue.prototype.$auth = auth
// 模态框对象
Vue.prototype.$modal = modal
// CDN image normalization and responsive thumbnail helpers
Vue.prototype.$image = image
}
}