我想在非角度网站中使用以下小部件,只需在页面中的任意位置调用标记recyclerView
多次。这意味着每个标签应该是不同的实例。
BBBBActivity
我尝试这样做,采用AOT构建的角度项目,我用它来开发这个简单的小部件,并将脚本文件和css文件导入到另一个非角度站点(使用WAMP)。但是,它不起作用。
<app-root>
实际上,这个import { Component } from '@angular/core';
@Component({
selector: 'app-root',
template: `
<div class="widget-container">
<h1>{{title}}</h1>
</div>
`,
styles: [`
.widget-container {
width: 40%;
border: 1px solid grey;
}
`]
})
export class AppComponent {
title = 'This is an angular widget';
}
文件是从角度4的AOT构建生成的html文件。无论如何,这个html文件可以在drupal或wordpress上。谁能描述如何达到这个要求?