Loggin Panel terminado

This commit is contained in:
2020-08-02 21:57:53 -05:00
parent 6eccbf8381
commit 820ea06368
11 changed files with 362 additions and 155 deletions
+18 -10
View File
@@ -1,29 +1,37 @@
<template>
<div id="app">
<Header />
<router-view></router-view>
<Footer />
</div>
</template>
<script>
//import HelloWorld from "./components/HelloWorld.vue";
import Header from "./view/header.vue";
import Footer from "./view/footer.vue";
import Vue from "vue";
import { BootstrapVue, IconsPlugin } from "bootstrap-vue";
Vue.use(BootstrapVue);
// Optionally install the BootstrapVue icon components plugin
Vue.use(IconsPlugin);
export default {
name: "App",
components: {
//HelloWorld
Header,
Footer
}
};
</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>