vue3 jsx 自定义指令使用 ``` const App = { directives: { custom: customDirective }, setup() { return () => <a v-custom={[val, "arg", ["a", "b"]]} />; }, }; ``` 而你的指令并没有抛出来。