wangweiwei / vue-resize-observer

Vue Resize Observer
MIT License
61 stars 9 forks source link

vue3 使用 jsx 存在缺陷 #4

Open luocong2016 opened 3 years ago

luocong2016 commented 3 years ago

vue3 jsx 自定义指令使用

const App = {
  directives: { custom: customDirective },
  setup() {
    return () => <a v-custom={[val, "arg", ["a", "b"]]} />;
  },
};

而你的指令并没有抛出来。