feat: Sprint 2 — snippets + keychain CRUD, standalone templates, clipboard/utils JS

This commit is contained in:
swanadiva
2026-07-07 13:26:56 +07:00
parent 8cfdec3980
commit c4b0d7d8c0
17 changed files with 691 additions and 112 deletions
+6
View File
@@ -0,0 +1,6 @@
document.addEventListener('alpine:init', () => {
Alpine.data('passphraseToggle', () => ({
show: false,
toggle() { this.show = !this.show; }
}));
});