Files
mixtape/zero.Backoffice.UI/app/editor/_wip/tests/_testcmp.vue
T
2021-12-09 10:51:10 +01:00

55 lines
701 B
Vue

<template>
<div class="testcmp">
testcmp
</div>
</template>
// @ts-ignore
<script lang="ts">
import { defineComponent } from 'vue';
interface Props
{
maxLength: number;
placeholder: string | Function;
}
//function TestCmpOptions(maxLength?: number, placeholder?: string)
//{
// this.maxLenght =
//}
export default defineComponent({
name: 'editorTestCmp',
props: {
options: {
type: Object as Props,
default: {
maxLength: null,
placeholder: null
} as Props
}
},
data: () => ({
}),
mounted()
{
},
methods: {
}
});
</script>
<style lang="scss">
</style>