/
githubmirror
/
ionic
Обзор
Документация
Войти
/
githubmirror
/
ionic
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/angular/test/base/src/app/standalone/popover/popover.component.ts
11 строк
261 B
Liam DeBeasi
feat(angular): ship Ionic components as Angular standalone components (#28311)
10 окт 2023, 20:06
Не верифицирован
10 окт 2023, 20:06
57e2476
Код
Авторство
О чём код?
import { Component } from '@angular/core'; import { IonPopover } from '@ionic/angular/standalone'; @Component({ selector: 'app-test', templateUrl: './popover.component.html', standalone: true, imports: [IonPopover] }) export class PopoverComponent { }