在vue3的setup中是这么写的,而且必须要template模板去展示
- <template>
- <render />
- </template>
-
- <script setup>
-
- import { h } from "vue";
-
- const render = () => {
- return h('这里是要输出的东西');
- };
-
- </script>
- <script>
- export default {
- render: h => {
- return h('这里是要输出的东西')
- }
- }
- </script>