mirror of
https://github.com/MarcZierle/photo-log-frontend.git
synced 2025-04-07 21:14:37 +00:00
31 lines
568 B
Vue
31 lines
568 B
Vue
<template>
|
|
<div>
|
|
<h1>{{ title }}</h1>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
// @group Sample Components
|
|
// just some sample code...
|
|
export default {
|
|
data() {
|
|
return {
|
|
// the title of the pages
|
|
title: "Hello"
|
|
}
|
|
},
|
|
methods: {
|
|
// @vuese
|
|
// clears something
|
|
clear() {
|
|
return true
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
h1 {
|
|
color: red;
|
|
}
|
|
</style> |