15 lines
167 B
Vue
15 lines
167 B
Vue
<template>
|
|
<h1>hello {{ world }}</h1>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
name: 'Files',
|
|
data() {
|
|
return {
|
|
world: "świecie"
|
|
}
|
|
},
|
|
}
|
|
</script> |