tony

Results 1 issues of tony

``` const modules = import.meta.glob("@/components/test/*.vue"); console.log(modules,"modules") const components = { install: function (app) { for (let path in modules) { modules[path]().then((mod) => { app.component(mod["default"]["name"], mod["default"]); }); } }, }; export...