Files
mixtape/zero.Backoffice.UI/_notimplemented/setup/Steps/step-application.vue
T

31 lines
625 B
Vue
Raw Normal View History

2020-03-30 17:11:56 +02:00
<template>
<div class="setup-step setup-step-application">
<h2>your application</h2>
<p>With zero you can manage multiple applications with one installation. Start by adding your first application.</p>
<ui-property label="Application name" :vertical="true">
2020-04-03 16:45:47 +02:00
<input v-model="value.appName" type="text" class="ui-input" maxlength="40" placeholder="My super awesome app maybe?" />
2020-03-30 17:11:56 +02:00
</ui-property>
</div>
</template>
<script>
export default {
name: 'setupStepApplication',
props: {
2020-04-03 14:27:39 +02:00
value: Object
2020-03-30 17:11:56 +02:00
},
mounted ()
{
},
methods: {
}
}
</script>