我已经在本地启动了我的ember应用程序,如果它在chrome中启动它工作正常但是当我在IE 11中提供一个空白页面正在加载...请告诉我如何修复它
答案 0 :(得分:1)
严格模式下不允许的属性的多个定义
要解决此错误,您需要删除控制台中提到的重复的功能/属性名称。在任何时候,您应该只有一个具有相同名称的函数/属性。 例如,
export default Component.extend({
foo: function(){
//foo function
},
foo: function(){
//this will produce error in IE strict mode and it will not execute JS
}
});