Files
red_de_investigacion_front/src/App.vue
T
DanielRamirezGe 5eecfbf6cd first commit
2020-01-14 20:43:08 -06:00

37 lines
578 B
Vue

<template>
<div id="app">
<appUsuario />
<FlashMessage position="right bottom"></FlashMessage>
</div>
</template>
<script>
import usuario from './components/usuario.vue';
export default {
name: 'app',
components: {
appUsuario: usuario
}
}
</script>
<style>
#app {
font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
padding: 0;
margin: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
</style>