aboutsummaryrefslogtreecommitdiff
path: root/src/App.vue
blob: a8c04d78336735973955eba97b6d6cec2ec0648d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<script>
export default {
	data() {
		return {
			greeting: 'Hello World!'
		}
	}
}
</script>

<template>
	<p class="greeting">{{ greeting }}</p>
</template>

<style>
.greeting {
	color: green;
	font-weight: bold;
}
</style>