pizzatool/frontend/m-vue/dist/index.html

16 lines
435 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Pizza belegen für Dummies</title>
<script src="https://unpkg.com/vue"></script>
</head>
<body>
<div id="app">
<p>Du willst eine Pizza? Hier kannst du mit belegen anfangen:</p>
<input v-model="pizzatitle" :placeholder="pizzatitle">
<button v-on:click="createPizza">Starte mit Belegen!</button>
</div>
<script src="/js/index.js"></script>
</body>
</html>