DEV Community

Discussion on: Feature: Vue 3 script setup

Collapse
 
ghalex profile image
Alexandru Ghiura

You can still export default the component:

<script setup="props">
// ... other logic here

export default {
  name: 'ComponentName',
};
</script>
Enter fullscreen mode Exit fullscreen mode