gctGenerator/docs/.vuepress/components/FormatSelect.vue

34 lines
584 B
Vue
Raw Normal View History

2020-06-28 06:33:20 +09:00
<template>
2020-06-28 10:45:44 +09:00
<SelectComponent
placeholder="Choose Format"
:options="options"
:selectedValue="selectedValue"
:onChange="onChange"
/>
2020-06-28 06:33:20 +09:00
</template>
<script>
2020-06-28 10:45:44 +09:00
// Components
2020-06-29 00:35:18 +09:00
import SelectComponent from './SelectComponent';
2020-06-28 06:33:20 +09:00
2020-06-28 10:45:44 +09:00
// Data
2020-06-29 00:35:18 +09:00
import downloadFormats from '../data/downloadFormats.json';
2020-06-28 06:33:20 +09:00
export default {
props: {
selectedValue: { type: String },
onChange: { type: Function },
},
data() {
return {
2020-06-29 00:35:18 +09:00
options: downloadFormats.map(v => ({
2020-06-28 06:33:20 +09:00
value: v.target,
label: v.name,
})),
};
},
};
</script>
<style scoped></style>