我想知道是否有人可以帮助您使用webpack设置angularjs,如下所示:https://pastebin.com/dptjwHxp
文件结构如下
generate_spanning_tree/2
我正试图“工作”的当前配置(我的意思是让应用程序组件的模板中的内容呈现)如下:
++++ client / index.js
Method myMethod = Entry.class.getDeclaredMethod("get" + criteria);
entries.get(index).getPort();
++++ client / components / app.js
root
|____public
| |____index.html
|
|____client
|____________components
| |
|____index.js |_______app.js
++++ public / index.html
import angular from "angular";
import app from "./components/app";
export default angular.module("practice", []);
有趣的是,如果代码不在其自己的独立组件app.js文件中,我可以让app组件呈现得很好,如下所示:
import angular from "angular";
export default angular.module("practice", []).component("app", {
template: "<div>This needs to show up!!</div>"
});
感谢。
答案 0 :(得分:0)
当你将params传递给函数时,你正在重新创建angular.module实践。
应该是:
export default angular.module(“practice”)。component(“app”,{})