enso/app/gui/templates/visualization.vue

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

55 lines
1.2 KiB
Vue
Raw Normal View History

<script lang="ts">
export const name = '<name here>'
export const inputType = '<allowed input type(s) here>'
// Optional:
export const defaultPreprocessor = [
'<module path here>',
'<method name here>',
'<optional args here>',
]
interface Data {
dataType: 'here'
}
</script>
<script setup lang="ts">
import { onMounted } from 'vue'
// Optional: add your own external dependencies.
// import dependency from 'https://<js dependency here>'
//
// When using typescript, you can also specify typings for your dependencies by locally declaring
// the module in a `.d.ts` file in the same directory as this file:
// ```ts
// module 'https://<js dependency here>' {
// export * from '<locally installed typings here>'
// }
// ```
const props = defineProps<{
data: Data
}>()
const emit = defineEmits<{
// Optional:
'update:preprocessor': [module: string, method: string, ...args: string[]]
}>()
// Optional:
onMounted(() => {
emit('update:preprocessor', '<module path here>', '<method name here>', '<optional args here>')
})
</script>
<template>
<!-- <content here> -->
{{ props.data }}
</template>
<style scoped>
/* Optional */
@import url('<style>');
@import url('<dependencies>');
@import url('<here>');
</style>