mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 11:41:20 +08:00
14 lines
447 B
HTML
14 lines
447 B
HTML
<ion-view>
|
|
<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>
|
|
</ion-view>
|