This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/debugger/src/App.vue

30 lines
389 B
Vue
Raw Normal View History

2019-08-09 18:40:45 +08:00
<template>
<div id="app">
2019-08-12 17:16:56 +08:00
<router-view />
2019-08-09 18:40:45 +08:00
</div>
</template>
<script>
export default {
2019-08-12 17:16:56 +08:00
name: "app"
2019-08-09 19:57:11 +08:00
};
2019-08-09 18:40:45 +08:00
</script>
<style>
2019-08-14 20:07:36 +08:00
html {
height: 100%;
}
body {
height: 100%;
}
2019-08-09 18:40:45 +08:00
#app {
2019-08-09 19:57:11 +08:00
font-family: "Avenir", Helvetica, Arial, sans-serif;
2019-08-09 18:40:45 +08:00
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
2019-08-14 20:07:36 +08:00
height: 100%;
2019-08-09 18:40:45 +08:00
}
</style>