-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathSimple.vue
64 lines (60 loc) · 1.05 KB
/
Simple.vue
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
<template>
<div class="about p-4">
<button
class="bg-grey text-grey-darkest uppercase text-xs font-bold tracking-wide p-2"
@click="trigger"
>Trigger Animation</button>
<Flipper :flip-key="flipKey">
<Flipped flip-id="square">
<div class="square" :class="squareClass"></div>
</Flipped>
</Flipper>
</div>
</template>
<script>
import Flipper from "../src/Flipper";
import Flipped from "../src/Flipped";
export default {
components: {
Flipped,
Flipper
},
name: "simple",
data() {
return {
flipper: null,
open: false
};
},
computed: {
squareClass() {
return this.open ? "expanded" : "";
},
flipKey() {
return this.open.toString();
}
},
methods: {
trigger() {
this.open = !this.open;
}
}
};
</script>
<style scoped>
button {
margin-bottom: 1rem;
}
.square {
height: 50px;
width: 200px;
background: pink;
align-items: center;
padding: 16px;
}
.square.expanded {
height: 200px;
width: 250px;
text-align: center;
}
</style>