vue-resize-observer icon indicating copy to clipboard operation
vue-resize-observer copied to clipboard

vue3 使用 jsx 存在缺陷

Open luocong2016 opened this issue 4 years ago • 0 comments

vue3 jsx 自定义指令使用

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

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

luocong2016 avatar Jan 14 '21 07:01 luocong2016