init button
This commit is contained in:
parent
173070b376
commit
c5eff87f33
21
components/Button.vue
Normal file
21
components/Button.vue
Normal file
@ -0,0 +1,21 @@
|
||||
<template>
|
||||
<button @click="emitClick">
|
||||
{{ text }}
|
||||
</button>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
props: {
|
||||
text: {
|
||||
type: String,
|
||||
default: ''
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
emitClick () {
|
||||
this.$emit('eclick')
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
@ -1,6 +1,5 @@
|
||||
<template>
|
||||
<div>
|
||||
123
|
||||
<Nuxt />
|
||||
</div>
|
||||
</template>
|
||||
|
@ -1,9 +1,16 @@
|
||||
<template>
|
||||
<div class="test">
|
||||
test
|
||||
<Button text="Hello World" @eclick="submitPhoto" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {}
|
||||
export default {
|
||||
methods: {
|
||||
submitPhoto () {
|
||||
console.log('test')
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
Loading…
Reference in New Issue
Block a user