Co-authored-by: Adam Bem <adam.bem@zoho.eu> Reviewed-on: #229 Reviewed-by: Mikolaj Widla <widlam@noreply.example.com>
22 lines
400 B
Vue
22 lines
400 B
Vue
<script setup lang="ts">
|
|
|
|
import InsertTemplateComponent from '@components/common/InsertTemplateComponent.vue'
|
|
|
|
const props = defineProps(
|
|
{
|
|
prettyName: {type: String, required: true}
|
|
}
|
|
)
|
|
|
|
const emit = defineEmits(['update:defaultData'])
|
|
|
|
function setDefault(data: string) {
|
|
const emitName = "update:defaultData";
|
|
emit(emitName, data)
|
|
}
|
|
|
|
</script>
|
|
|
|
<template>
|
|
|
|
</template> |