forked from inertiajs/inertia-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInertiaExample.vue
117 lines (102 loc) · 2.31 KB
/
InertiaExample.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
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
<template>
<Head title="Inertia + Vite Ruby + Vue Example" />
<div class="root">
<h1 class="h1">Hello {{ name }}!</h1>
<div>
<a href="https://inertia-rails.dev" target="_blank">
<img class="logo" :src="inertiaSvg" alt="Inertia logo" />
</a>
<a href="https://vite-ruby.netlify.app" target="_blank">
<img class="logo vite" :src="viteRubySvg" alt="Vite Ruby logo" />
</a>
<a href="https://vuejs.org" target="_blank">
<img class="logo vue" :src="vueSvg" alt="Vue logo" />
</a>
</div>
<h2 class="h2">Inertia + Vite Ruby + Vue</h2>
<div class="card">
<button class="button" type="button" @click="count++">
count is {{ count }}
</button>
<p>
Edit <code>app/frontend/pages/InertiaExample.vue</code> and save to test
HMR
</p>
</div>
<p class="readTheDocs">
Click on the Inertia, Vite Ruby, and Vue logos to learn more
</p>
</div>
</template>
<script setup>
import { Head } from '@inertiajs/vue3'
import { ref } from 'vue'
import inertiaSvg from '/assets/inertia.svg'
import viteRubySvg from '/assets/vite_ruby.svg'
import vueSvg from '/assets/vue.svg'
defineProps({
name: String,
})
const count = ref(0)
</script>
<style scoped>
.root {
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5;
font-weight: 400;
color: #213547;
background-color: #ffffff;
max-width: 1280px;
margin: 0 auto;
padding: 2rem;
text-align: center;
}
.h1 {
font-size: 3.2em;
line-height: 1.1;
}
.h2 {
font-size: 2.6em;
line-height: 1.1;
}
.button {
border-radius: 8px;
border: 1px solid transparent;
padding: 0.6em 1.2em;
font-size: 1em;
font-weight: 500;
font-family: inherit;
background-color: #f9f9f9;
cursor: pointer;
transition: border-color 0.25s;
}
.button:hover {
border-color: #646cff;
}
.button:focus,
.button:focus-visible {
outline: 4px auto -webkit-focus-ring-color;
}
.logo {
display: inline-block;
height: 6em;
padding: 1.5em;
will-change: filter;
transition: filter 300ms;
}
.logo:hover {
filter: drop-shadow(0 0 2em #646cffaa);
}
.logo.vite:hover {
filter: drop-shadow(0 0 2em #e4023baa);
}
.logo.vue:hover {
filter: drop-shadow(0 0 2em #41b883aa);
}
.card {
padding: 2em;
}
.readTheDocs {
color: #888;
}
</style>