作者:天呀你呀_778 | 来源:互联网 | 2023-09-25 19:04
角向灌注浮动标签组件
原文:https://www . geeksforgeeks . org/angular-priming-float label-component/
Angular PrimeNG 是一个开源框架,具有一组丰富的本机 Angular UI 组件,用于实现出色的风格,该框架用于非常轻松地制作响应性网站。在这篇文章中,我们将知道如何在角素数中使用浮点分量。
浮动标签组件是可以在输入组件上使用的浮动标签。
创建角度应用和安装模块:
项目结构:如下图。
示例 1: 这是展示如何使用浮动标签组件的基本示例
app.component.html
GeeksforGeeks
PrimeNG FloatLabel component
app.module.ts
import { NgModule } from "@angular/core";
import { BrowserModule } from "@angular/platform-browser";
import { FormsModule } from "@angular/forms";
import { BrowserAnimationsModule } from
"@angular/platform-browser/animations";
import { HttpClientModule } from "@angular/common/http";
import { AppComponent } from "./app.component";
import { AutoCompleteModule } from "primeng/autocomplete";
import { InputTextModule } from "primeng/inputtext";
@NgModule({
imports: [
BrowserModule,
BrowserAnimationsModule,
AutoCompleteModule,
FormsModule,
HttpClientModule,
InputTextModule,
],
declarations: [AppComponent],
bootstrap: [AppComponent],
})
export class AppModule {}
输出:
示例 2: 在本例中,我们将了解如何在 FloatLabel 组件中使用 disabled 属性。T3】
app.component.html
GeeksforGeeks
PrimeNG FloatLabel component
app.module.ts
import { NgModule } from "@angular/core";
import { BrowserModule } from "@angular/platform-browser";
import { FormsModule } from "@angular/forms";
import { BrowserAnimationsModule } from
"@angular/platform-browser/animations";
import { HttpClientModule } from "@angular/common/http";
import { AppComponent } from "./app.component";
import { AutoCompleteModule } from "primeng/autocomplete";
import { InputTextModule } from "primeng/inputtext";
@NgModule({
imports: [
BrowserModule,
BrowserAnimationsModule,
AutoCompleteModule,
FormsModule,
HttpClientModule,
InputTextModule,
],
declarations: [AppComponent],
bootstrap: [AppComponent],
})
export class AppModule {}
输出:
参考:T2】https://primefaces.org/primeng/showcase/#/floatlabel