Ajout de la page Fiches
This commit is contained in:
parent
e3726632a3
commit
3578b73417
|
@ -0,0 +1,48 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="fr">
|
||||||
|
<head>
|
||||||
|
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=0.4">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||||
|
|
||||||
|
|
||||||
|
<title>Gestion des enseignants</title>
|
||||||
|
|
||||||
|
<!-- Icon -->
|
||||||
|
<link rel='shortcut icon' href='/favicon.ico'>
|
||||||
|
|
||||||
|
<!-- CSS dependencies -->
|
||||||
|
<link href="https://fonts.googleapis.com/css?family=Fira+Sans" rel="stylesheet">
|
||||||
|
<link rel='stylesheet' type='text/css' href='/css/font-loader.css'>
|
||||||
|
<link rel='stylesheet' type='text/css' href='/css/global.css'>
|
||||||
|
<link rel='stylesheet' type='text/css' href='/css/pop-up.css'>
|
||||||
|
<link rel='stylesheet' type='text/css' href='/css/layout.css'>
|
||||||
|
<link rel='stylesheet' type='text/css' href='/css/menu.css'>
|
||||||
|
<link rel='stylesheet' type='text/css' href='/css/header.css'>
|
||||||
|
<link rel='stylesheet' type='text/css' href='/css/container.css'>
|
||||||
|
|
||||||
|
<!-- JS dependencies -->
|
||||||
|
<script type='text/javascript' src='/js/_SERVER.js'></script>
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
|
||||||
|
<div id='main-vue'></div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!-- POPUP WINDOW -->
|
||||||
|
<div id='POPUP'>
|
||||||
|
<div class='header'></div>
|
||||||
|
<div class='body'></div>
|
||||||
|
<div class='footer'></div>
|
||||||
|
</div>
|
||||||
|
<div id='POPUP-BG'></div>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Main loop -->
|
||||||
|
<script type='text/javascript' src='/js/bundle@fiche.js'></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,23 @@
|
||||||
|
<template>
|
||||||
|
|
||||||
|
<div id='CONTAINER'>
|
||||||
|
|
||||||
|
<h1>Ici c'est la page Fiches</h1>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</template>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script>
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'CONTAINER_VIEW',
|
||||||
|
data(){
|
||||||
|
return { gstore: gstore.get }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
</script>
|
|
@ -0,0 +1,35 @@
|
||||||
|
/* (1) Imports
|
||||||
|
---------------------------------------------------------*/
|
||||||
|
/* (1) NPM libs */
|
||||||
|
import Vue from 'vue'
|
||||||
|
import VueRouter from 'vue-router'
|
||||||
|
import routes from '../routes/fiche'
|
||||||
|
|
||||||
|
/* (2) Vues */
|
||||||
|
import wrapper_vue from '../vue/wrapper.vue'
|
||||||
|
|
||||||
|
/* (3) Data */
|
||||||
|
require('../data/common');
|
||||||
|
require('../data/fiche');
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* (2) Initialisation
|
||||||
|
---------------------------------------------------------*/
|
||||||
|
/* (1) Init Router */
|
||||||
|
const router = new VueRouter({
|
||||||
|
mode: 'history',
|
||||||
|
routes: routes[0]
|
||||||
|
});
|
||||||
|
|
||||||
|
/* (2) Store router in gstore */
|
||||||
|
gstore.add('router', router);
|
||||||
|
|
||||||
|
/* (3) Render view */
|
||||||
|
Vue.use(VueRouter);
|
||||||
|
new Vue({
|
||||||
|
el: '#main-vue',
|
||||||
|
router,
|
||||||
|
render: h => h(wrapper_vue)
|
||||||
|
});
|
|
@ -0,0 +1,11 @@
|
||||||
|
export default{ 0: [
|
||||||
|
|
||||||
|
{
|
||||||
|
path: '/fiche/view/',
|
||||||
|
component: require('../component/fiche/view.vue').default
|
||||||
|
}, {
|
||||||
|
path: '*',
|
||||||
|
redirect: '/fiche/view/'
|
||||||
|
}
|
||||||
|
|
||||||
|
]}
|
Loading…
Reference in New Issue