mirror of
https://github.com/lights0123/n-link.git
synced 2025-01-05 07:45:29 +00:00
16 lines
293 B
Vue
16 lines
293 B
Vue
<template>
|
|
<div id="app" class="h-screen">
|
|
<router-view/>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
#app {
|
|
user-select: none;
|
|
font-family: Avenir, Helvetica, Arial, sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
color: #2c3e50;
|
|
}
|
|
</style>
|