mirror of
https://github.com/MarcZierle/photo-log-frontend.git
synced 2025-04-04 11:44:37 +00:00
first commit
This commit is contained in:
commit
b4099363fe
14
docs/components/testcomponent.md
Normal file
14
docs/components/testcomponent.md
Normal file
@ -0,0 +1,14 @@
|
||||
# testcomponent
|
||||
|
||||
just some sample code...
|
||||
|
||||
## Methods
|
||||
|
||||
<!-- @vuese:testcomponent:methods:start -->
|
||||
|Method|Description|Parameters|
|
||||
|---|---|---|
|
||||
|clear|clears something|-|
|
||||
|
||||
<!-- @vuese:testcomponent:methods:end -->
|
||||
|
||||
|
19
docs/index.html
Normal file
19
docs/index.html
Normal file
@ -0,0 +1,19 @@
|
||||
<!DOCTYPE>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<title>Sample Components in Vue</title>
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docute@4/dist/docute.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="docute"></div>
|
||||
<script src="https://cdn.jsdelivr.net/npm/docute@4/dist/docute.js"></script>
|
||||
<script>
|
||||
new Docute({
|
||||
target: '#docute',
|
||||
sidebar: JSON.parse('[{"title":"Sample Components","links":[{"title":"testcomponent","link":"/components/testcomponent"}]}]'.replace(/\&\#34\;/g, '"'))
|
||||
})
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
52
index.html
Normal file
52
index.html
Normal file
@ -0,0 +1,52 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<script src="https://unpkg.com/vue@next"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="app">
|
||||
<h2>{{ title }}</h2>
|
||||
<input :value="title" @input="title = $event.target.value" >
|
||||
<input v-model="count" type="number" >
|
||||
<button @click="increment">Up</button>
|
||||
<button @click="decrement">Down</button>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
const app = Vue.createApp({
|
||||
data() {
|
||||
return {
|
||||
title: "Hi there",
|
||||
count: 4,
|
||||
headingColor: 'some'
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
count() {
|
||||
console.log(this.count)
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
increment() {
|
||||
this.count++
|
||||
},
|
||||
decrement() {
|
||||
this.count--
|
||||
},
|
||||
isEven() {
|
||||
return this.count % 2 === 0
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
const vm = app.mount('#app')
|
||||
</script>
|
||||
|
||||
<style>
|
||||
.even {
|
||||
color: pink;
|
||||
}
|
||||
</style>
|
||||
</body>
|
||||
</html>
|
31
testcomponent.vue
Normal file
31
testcomponent.vue
Normal file
@ -0,0 +1,31 @@
|
||||
<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>
|
Loading…
Reference in New Issue
Block a user