You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.1 KiB
47 lines
1.1 KiB
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<title>My awesome team</title>
|
|
|
|
<link rel="stylesheet" href="./css/style.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app">
|
|
|
|
<navbar></navbar>
|
|
<team></team>
|
|
<!--<div class="team">
|
|
<team-add @add-team="addTeam"></team-add>
|
|
</div>
|
|
<teamcard v-for="team in allTeam"
|
|
:id="team.id"
|
|
:name="team.name"
|
|
:description="team.description">
|
|
</teamcard>-->
|
|
</div>
|
|
|
|
<script src="./src/misc/constant.js"></script>
|
|
<script src="./src/error/required_field_error.js"></script>
|
|
<script src="./src/error/string_size.js"></script>
|
|
|
|
|
|
<script type="module">
|
|
import { createApp } from 'https://unpkg.com/vue@3/dist/vue.esm-browser.js';
|
|
|
|
import Navbar from './src/view/navbar.js';
|
|
import Team from './src/view/team.js'
|
|
|
|
const app = createApp();
|
|
|
|
app.component('Navbar', Navbar)
|
|
.component('Team', Team)
|
|
app.mount('#app');
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|
|
|
|
<!--Ctrl Maj R--> |