dashboard/edit/rio.cattle.io.router/Redirect.vue

56 lines
1.1 KiB
Vue

<script>
import LabeledInput from '@/components/form/LabeledInput';
import Checkbox from '@/components/form/Checkbox';
export default {
components: { LabeledInput, Checkbox },
props: {
spec: {
type: Object,
default: () => {
return {};
}
}
},
data() {
const {
host = '', path = '', prefix = '', toHTTPS = false
} = this.spec;
return {
host, path, prefix, toHTTPS
};
},
watch: {
toHTTPS() {
this.change();
}
},
methods: {
change() {
const {
host, path, prefix, toHTTPS
} = this;
this.$emit('input', {
host, path, prefix, toHTTPS
});
}
}
};
</script>
<template>
<div id="redirect" class="row inputs" @input="change">
<LabeledInput v-model="host" label="Host" />
<LabeledInput v-model="path" label="Path" />
<LabeledInput v-model="prefix" label="Prefix" />
<span>
<Checkbox v-model="toHTTPS" type="checkbox" :label="true">
<template v-slot:label>
Change protocol to <code>https</code>
</template>
</Checkbox>
</span>
</div>
</template>