Open jarofbilly opened 2 months ago
When using the render function instead of template, this error shows:
<style> .panel { background: orange; padding: 10px; } </style> <script lang="ts"> import { defineComponent, h } from 'vue'; import Flicking from '@egjs/vue3-flicking'; import '@egjs/vue3-flicking/dist/flicking.css'; export default defineComponent({ name: 'IndexPage', components: { Flicking }, setup() { return () => h('q-page', { class: 'row items-center justify-evenly' }, [ h('div', 'This is a big test'), h(Flicking, { options: { align: 'prev', circular: true } }, { default: () => [ h('div', { class: 'panel' }, '2'), h('div', { class: 'panel' }, '2'), h('div', { class: 'panel' }, '3') ] }) ]); } }); </script>
Description
When using the render function instead of template, this error shows:
Steps to check or reproduce