-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathApp.vue
More file actions
23 lines (20 loc) · 558 Bytes
/
App.vue
File metadata and controls
23 lines (20 loc) · 558 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<script setup>
import HelloWorld from "./components/HelloWorld.vue";
// This starter template is using Vue 3 experimental <script setup> SFCs
// Check out https://github.com/vuejs/rfcs/blob/script-setup-2/active-rfcs/0000-script-setup.md
</script>
<template>
<div>
<HelloWorld msg="Exceptionless Vue Example" />
</div>
</template>
<style>
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>