mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 19:57:22 +08:00
12 lines
404 B
HTML
12 lines
404 B
HTML
<ion-content padding>
|
|
<h2>Local Storage</h2>
|
|
<button primary (click)="getLocal()">Get</button>
|
|
<button primary (click)="setLocal()">Set</button>
|
|
<button primary (click)="removeLocal()">Remove</button>
|
|
|
|
<h2>SQL Storage</h2>
|
|
<button primary (click)="getSql()">Get</button>
|
|
<button primary (click)="setSql()">Set</button>
|
|
<button primary (click)="removeSql()">Remove</button>
|
|
</ion-content>
|