forked from ModusCreateOrg/ionic-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathionic-controllers.html
135 lines (128 loc) · 5.55 KB
/
ionic-controllers.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Ionic v4 + Vue.js - Ionic Controllers</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="format-detection" content="telephone=no">
<meta name="msapplication-tap-highlight" content="no">
<script src="https://unpkg.com/vue"></script>
<script src="https://unpkg.com/vue-router/dist/vue-router.js"></script>
<script src="https://unpkg.com/vue-class-component@latest/dist/vue-class-component.js"></script>
<script src="https://unpkg.com/vue-property-decorator@latest/lib/vue-property-decorator.umd.js"></script>
<script src="https://unpkg.com/@modus/ionic-vue@latest/dist/ionic-vue.js"></script>
<script src="https://unpkg.com/@ionic/core@latest/dist/ionic.js"></script>
<link rel="stylesheet" href="https://unpkg.com/@ionic/core@latest/css/ionic.bundle.css"/>
</head>
<body>
<ion-app>
<ion-menu side="end">
<ion-header>
<ion-toolbar>
<ion-title>Hola</ion-title>
</ion-toolbar>
</ion-header>
<ion-content padding>
hola macho
</ion-content>
</ion-menu>
<ion-vue-router></ion-vue-router>
</ion-app>
<script>
const Toolbar = Vue.component('Toolbar', {
name: 'Toolbar',
props: { title: String, backURL: String },
template: `<ion-header>
<ion-toolbar>
<ion-buttons slot="start">
<ion-back-button :default-href="backURL"/>
</ion-buttons>
<ion-title>{{ title }}</ion-title>
</ion-toolbar>
</ion-header>`
})
const Home = {
template: `<ion-page class="ion-page" main>
<toolbar title="Home"/>
<ion-content class="ion-content" padding>
<ion-button @click="alert">Trigger Alert</ion-button>
<ion-button @click="loading">Trigger Loading</ion-button>
<ion-button @click="menu">Toggle Menu</ion-button>
<ion-button @click="modal">Open Modal</ion-button>
<ion-button @click="popover">Open Popover</ion-button>
<ion-button @click="toast">Trigger Toast</ion-button>
</ion-content>
</ion-page>`,
methods: {
alert() {
this.$ionic.alertController.create({
header: 'Hello!',
message: 'How are you?',
buttons: ['OK, thanks!'],
})
.then(a => a.present())
},
loading() {
this.$ionic.loadingController.create()
.then(l => {
l.present()
setTimeout(function() {
l.dismiss()
}, 1000)
})
},
menu() {
this.$ionic.menuController.toggle()
},
modal() {
this.$ionic.modalController.create({
component: {
template: `<div>
<ion-content padding>
<h1>Howdy!</h1>
</ion-content>
</div>`,
}
})
.then(m => m.present())
},
popover(event) {
this.$ionic.popoverController.create({
component: {
template: `<ion-list>
<ion-list-header>
<ion-label>Ionic</ion-label>
</ion-list-header>
<ion-item>Learn Ionic</ion-item>
<ion-item>Documentation</ion-item>
<ion-item>Showcase</ion-item>
<ion-item>GitHub Repo</ion-item>
</ion-list>`,
},
translucent: true,
event
})
.then(p => p.present())
},
toast() {
this.$ionic.toastController.create({
message: 'Here\'s to IonicVue!',
showCloseButton: true,
position: 'top',
closeButtonText: 'Done'
})
.then(t => t.present())
},
}
}
Vue.use(IonicVue.IonicAPI)
new Vue({
router: new IonicVue.IonicVueRouter({
routes: [
{ path: '/', component: Home },
],
}),
}).$mount('ion-app')
</script>
</body>
</html>