On this page
Angular Popover Component
Documentation and examples for adding Angular Popovers to any element on your site.
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
```typescript import { PopoverModule } from '@coreui/angular'; @NgModule({ imports: [PopoverModule,] }) export class AppModule() { } ```
|prop|description|type|default|notes| |:---|:---|:---|:---:|---| |`cPopover` | Content of a popover. | `string`, `TemplateRef` | - | _required_ |`cPopoverOptions` | Optional popper Options object, takes precedence over cPopoverPlacement. | `Options` | - | |`cPopoverPlacement` | Placement of a popover. | `top`, `bottom`, `left`, `right` | `top` | _string_ |`cPopoverTrigger` | Event handlers to toggle popover. Specify one trigger or an array of them. | `Triggers`, `Triggers[]` | `hover` | _string_, _string[]_ |`cPopoverVisible` | Toggle the visibility of a popover. | `boolean` | `false` |