14 lines
186 B
Vue
Executable File
14 lines
186 B
Vue
Executable File
<template>
|
|
<button type="button" @click="back"><slot /></button>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
methods: {
|
|
back() {
|
|
window.history.back();
|
|
},
|
|
}
|
|
}
|
|
</script>
|