我想在多个库中分离项目。 我想在路由中使用每个库中的组件。我要声明路线,如下所示:
class RoutePaths {
static final RoutePath main = RoutePath(path: '/', useAsDefault: true);
}
class Routes {
static final RouteDefinition main = RouteDefinition(
routePath: RoutePaths.main,
component: ng.FooComponentNgFactory);
static final List<RouteDefinition> all = [];
}
从my_foo_lib导出的FooComponent。在主项目中:
dependencies:
my_foo_lib:
path: ../my_foo_lib
如何导入FooComponent模板?