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.
24 lines
347 B
24 lines
347 B
<template>
|
|
<div>
|
|
<h1>Letenka</h1>
|
|
<select v-model="letiste"></select>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "App",
|
|
data: () => {
|
|
return {
|
|
letiste: [
|
|
"PRG, Prague - Letiště Václava Havla",
|
|
"PAR, Paris",
|
|
"DWC, Dubai, AL Mohamed",
|
|
],
|
|
};
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|
|
|