Finish auth migration, now to make it work

This commit is contained in:
Dane Everitt 2018-12-30 12:13:10 -08:00
parent 3b553beac6
commit 75ba2eac39
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
13 changed files with 375 additions and 384 deletions

View file

@ -0,0 +1,14 @@
import Vue from 'vue';
export default Vue.component('message-box', {
props: {
title: {type: String, required: false},
message: {type: String, required: true}
},
template: `
<div class="lg:inline-flex" role="alert">
<span class="title" v-html="title" v-if="title && title.length > 0"></span>
<span class="message" v-html="message"></span>
</div>
`,
})