@yunzhi/ng-theme
v18.0.0
Published
基于bootstrap4的蓝色主题 ----- ## 说明 该模板由本文件夹中的代码以及asset中的basic共同组成。
Downloads
256
Readme
基于bootstrap4的蓝色主题
说明
该模板由本文件夹中的代码以及asset中的basic共同组成。
依赖
npm install -s [email protected]
npm install -s @fortawesome/[email protected]
使用步骤
- 引入样式表
"styles": [
"./node_modules/bootstrap/dist/css/bootstrap.css",
"./node_modules/@fortawesome/fontawesome-free/css/all.css",
"src/styles.scss"
]
add header
使用方法
import { Component } from '@angular/core';
import { RouterOutlet } from '@angular/router';
import { BasicComponent, ThemeService } from '../../projects/theme/src/public-api';
export class MyThemeService extends ThemeService {
// 在此复写
}
@Component({
selector: 'app-root',
standalone: true,
imports: [BasicComponent],
template: `
<theme-basic>
<h1>hello</h1>
</theme-basic>`,
providers: [
{
provide: ThemeService, useClass: MyThemeService
}
]
})
export class AppComponent {
title = 'angular19';
}