mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-27 02:36:06 +01:00
31 lines
639 B
Vue
31 lines
639 B
Vue
<template>
|
|
<responsive-width-wrapper>
|
|
<h1 class="title has-text-grey-dark" v-html="title" v-if="title"></h1>
|
|
<div id="punchline" v-if="punchline" class="block" v-html="punchline"></div>
|
|
<slot />
|
|
</responsive-width-wrapper>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'FormWrapper',
|
|
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
|
|
props: {
|
|
title: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
|
|
punchline: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
}
|
|
}
|
|
</script> |