diff options
Diffstat (limited to 'nezha-fronted/src/App.vue')
| -rw-r--r-- | nezha-fronted/src/App.vue | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/nezha-fronted/src/App.vue b/nezha-fronted/src/App.vue new file mode 100644 index 000000000..a2a7be584 --- /dev/null +++ b/nezha-fronted/src/App.vue @@ -0,0 +1,22 @@ +<template> + <div id="app"> + <router-view/> + </div> +</template> + +<script> +export default { + name: 'App' +} +</script> + +<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> |
