Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
24 lines
405 B
Vue
24 lines
405 B
Vue
<script>
|
|
const input = require('./PInput').default;
|
|
|
|
const radio = {
|
|
name: 'radio',
|
|
|
|
input_type: 'radio',
|
|
input_iclass: 'p-round p-thick',
|
|
|
|
components: input.components,
|
|
model: input.model,
|
|
props: input.props,
|
|
data: input.data,
|
|
computed: input.computed,
|
|
watch: input.watch,
|
|
mounted: input.mounted,
|
|
methods: input.methods,
|
|
|
|
render: input.render,
|
|
};
|
|
|
|
export default radio;
|
|
</script>
|