Aurelia 组合元素:未定义 childContainer
Aurelia compose element: childContainer is not defined
我想在我的应用程序中专门使用 view
属性 来利用 <compose>
自定义元素。这是我的 markup/code:
app.html
<template>
<main>
<compose view="views/start.html"></compose>
</main>
</template>
app.js
import { Metadata } from 'aurelia-framework';
export class App {
static metadata() { return Metadata.singleton(); }
constructor() { }
}
/views/start.html
<template>
<section>
<button>New game</button>
</section>
</template>
但是,我收到以下错误:
Potentially unhandled rejection [1] ReferenceError: childContainer is not defined
这是一个已解决的错误。看这里:
我想在我的应用程序中专门使用 view
属性 来利用 <compose>
自定义元素。这是我的 markup/code:
app.html
<template>
<main>
<compose view="views/start.html"></compose>
</main>
</template>
app.js
import { Metadata } from 'aurelia-framework';
export class App {
static metadata() { return Metadata.singleton(); }
constructor() { }
}
/views/start.html
<template>
<section>
<button>New game</button>
</section>
</template>
但是,我收到以下错误:
Potentially unhandled rejection [1] ReferenceError: childContainer is not defined
这是一个已解决的错误。看这里: