chore: init theme (#14508)

* chore: init theme

* chore: update faas config
This commit is contained in:
iamkun
2019-02-28 16:00:59 +08:00
committed by Zhi Cun
parent 2604c6192f
commit febdd3bbb4
63 changed files with 5552 additions and 805 deletions

View File

@@ -0,0 +1,38 @@
<template>
<section class="config" :key="displayName">
<div class="config-label">
{{displayName}}
</div>
<div class="config-content">
<theme-input
:val="value"
@change="onChange"
></theme-input>
</div>
</section>
</template>
<script>
import Input from './input';
import Mixin from './mixin';
export default {
components: {
themeInput: Input
},
data() {
return {
value: ''
};
},
mixins: [Mixin],
watch: {
'mergedValue': {
immediate: true,
handler(value) {
this.value = this.mergedValue;
}
}
}
};
</script>