-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (48 loc) · 2.17 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<title>My awesome blog</title>
</head>
<body>
<div id="app">
<!-- la synthaxe {{ variable }} permet d'afficher le contenu de la variable -->
<h1>{{ title }}</h1>
<!-- On déclare un événement via @nomEvent qui sera émit par this.$emit('npom-event', data) -->
<form-add-article @add-news="addNews"></form-add-article>
<awesome-article v-for="news in allNews"
:title="news.title"
:description="news.description">
</awesome-article>
</div>
<script src="/src/misc/constant.js"></script>
<!-- Afin de pouvoir importer Vue via la commande import, il est nécessaire de déclarer notre JS comme un module -->
<script type="module">
import { createApp } from 'https://unpkg.com/vue@3/dist/vue.esm-browser.js'; //intégration de vuejs via CDN
import FormAddArticle from '/src/view/form-add-article.js';
import AwesomeArticle from '/src/view/awesome-article.js';
const app = createApp({
//La méthode created() est appelée à la création de l'application
created() {
document.title = TITLE; //Initialisation de la base <title> à la création de l'application
},
data() {
return {
title: TITLE,
allNews: []
}
},
methods:{
addNews: function(news){
console.log('index.addNews', news);
this.allNews.push(news); //this.variable permet d'accéder aux variables contenues dans data()
}
}
});
//la méthode component(nomComposantHtml, nomComposantImporte) permet de déclarer un composant utilisable en tant que balise HTML <nom-composant></nom-composant>
//Le nom du composant côté JS doit respecté le Pascal case, alors que son utilisation dans le code HTML respecte le kebab case
app.component('FormAddArticle', FormAddArticle)
.component('AwesomeArticle', AwesomeArticle);
app.mount('#app');
</script>
</body>
</html>