3.0 Beta 3
This commit is contained in:
@@ -1,9 +1,25 @@
|
||||
import { Component } from '@angular/core';
|
||||
import {Component, inject, input} from '@angular/core';
|
||||
import {TUI_BREAKPOINT, TuiButton} from '@taiga-ui/core';
|
||||
import {TuiAppBarComponent} from '@taiga-ui/layout';
|
||||
import {TuiPlatform} from '@taiga-ui/cdk';
|
||||
import {NgTemplateOutlet} from '@angular/common';
|
||||
import {TranslatePipe} from '@ngx-translate/core';
|
||||
import {Router} from '@angular/router';
|
||||
|
||||
@Component({
|
||||
selector: 'navbar',
|
||||
imports: [],
|
||||
imports: [
|
||||
TuiAppBarComponent,
|
||||
TuiPlatform,
|
||||
NgTemplateOutlet,
|
||||
TuiButton,
|
||||
TranslatePipe
|
||||
],
|
||||
templateUrl: './navbar.html',
|
||||
styleUrl: './navbar.scss',
|
||||
})
|
||||
export class Navbar {}
|
||||
export class Navbar {
|
||||
breakpoint = inject(TUI_BREAKPOINT)
|
||||
router = inject(Router)
|
||||
backButtonDest = input.required<string>()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user