mirror of
https://github.com/janishutz/libreevent.git
synced 2025-11-25 05:14:23 +00:00
in setup name change
This commit is contained in:
@@ -15,10 +15,13 @@
|
|||||||
<p>You may find more infos about this part <a href="https://libreevent.janishutz.com/docs/setup/setup#page-setup" target="_blank">here</a></p>
|
<p>You may find more infos about this part <a href="https://libreevent.janishutz.com/docs/setup/setup#page-setup" target="_blank">here</a></p>
|
||||||
|
|
||||||
<label for="template">Choose a template</label><br>
|
<label for="template">Choose a template</label><br>
|
||||||
<select name="template" id="template" v-for="option in options">
|
<select name="template" id="template" v-for="option in options" :key="option.id">
|
||||||
<option :value="option.id">{{ option.name }}</option>
|
<option :value="option.id">{{ option.name }}</option>
|
||||||
</select><br>
|
</select><br>
|
||||||
|
|
||||||
|
<label for="name">Name of the website</label><br>
|
||||||
|
<input type="text" name="name" id="name" v-model="websiteName"><br>
|
||||||
|
|
||||||
<button @click="submit()" class="button">Continue</button>
|
<button @click="submit()" class="button">Continue</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -32,6 +35,7 @@
|
|||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
options: { 'default': { 'id': 'default', 'name': 'Default' } },
|
options: { 'default': { 'id': 'default', 'name': 'Default' } },
|
||||||
|
websiteName: 'libreevent',
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
|
|||||||
Reference in New Issue
Block a user