parent
21fc0fb5e4
commit
aadc64a58d
@ -1,2 +1,3 @@
|
|||||||
let linkService = new LinkService();
|
let linkService = new LinkService();
|
||||||
linkService.getLinks();
|
linkService.getLinks();
|
||||||
|
|
||||||
|
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"name": "tp-note",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"description": "2a tp note js",
|
||||||
|
"main": "main.js",
|
||||||
|
"scripts": {
|
||||||
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||||||
|
},
|
||||||
|
"author": "jault aurian & jacquelin bastien",
|
||||||
|
"license": "ISC"
|
||||||
|
}
|
@ -0,0 +1,19 @@
|
|||||||
|
export default{
|
||||||
|
data : function(){
|
||||||
|
return {
|
||||||
|
Home: '',
|
||||||
|
Teams: '',
|
||||||
|
Results: ''
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
},
|
||||||
|
template:
|
||||||
|
`
|
||||||
|
<div>
|
||||||
|
<a href="{Home}">Home</a>
|
||||||
|
<a href="{Teams}">Teams</a>
|
||||||
|
<a href="{Results}">Results</a>
|
||||||
|
</div>
|
||||||
|
`
|
||||||
|
}
|
Loading…
Reference in new issue