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.
32 lines
635 B
32 lines
635 B
<!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>
|
|
</div>
|
|
<script type="module">
|
|
import { createApp } from 'https://unpkg.com/vue@3/dist/vue.esm-browser.js';
|
|
|
|
import NavBar from '/src/view/navbar.js';
|
|
|
|
const app = createApp({
|
|
data(){
|
|
return {
|
|
message: 'Bonjour App'
|
|
}
|
|
}
|
|
})
|
|
app.component('NavBar', NavBar);
|
|
app.mount('#app');
|
|
</script>
|
|
</body>
|
|
|
|
</html> |