You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
789 B
Vue

<template>
<setup-panel
back
@back="stepBack"
>
<template #headline>
Hello {{ settings.device.name }}
</template>
<template #actions>
<v-btn
outlined
block
color="primary"
@click="onStart"
>
Let's start
</v-btn>
</template>
</setup-panel>
</template>
<script>
import { mapState } from 'vuex'
import SetupPanel from '@/components/SetupPanel'
export default {
components: { SetupPanel },
data: () => ({
}),
computed: {
...mapState([
'settings',
]),
},
created () {
},
methods: {
onStart () {
this.$router.push('/')
},
stepBack () {
this.$router.push('/setup/appearance')
},
},
}
</script>