mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 15:53:27 +00:00
split vault into components
This commit is contained in:
23
src/app/vault/view.component.ts
Normal file
23
src/app/vault/view.component.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
import * as template from './view.component.html';
|
||||
|
||||
import {
|
||||
Component,
|
||||
Input,
|
||||
OnChanges,
|
||||
} from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-vault-view',
|
||||
template: template,
|
||||
})
|
||||
export class ViewComponent implements OnChanges {
|
||||
@Input() cipherId: string;
|
||||
|
||||
constructor() {
|
||||
|
||||
}
|
||||
|
||||
ngOnChanges() {
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user