2023-01-13 05:40:33 +01:00
|
|
|
import { App } from "vue";
|
2018-02-16 18:24:10 +01:00
|
|
|
|
2023-01-13 05:40:33 +01:00
|
|
|
import userPreview from "./user-preview";
|
|
|
|
import size from "./size";
|
|
|
|
import getSize from "./get-size";
|
|
|
|
import ripple from "./ripple";
|
|
|
|
import tooltip from "./tooltip";
|
|
|
|
import hotkey from "./hotkey";
|
|
|
|
import appear from "./appear";
|
|
|
|
import anim from "./anim";
|
|
|
|
import clickAnime from "./click-anime";
|
|
|
|
import panel from "./panel";
|
|
|
|
import adaptiveBorder from "./adaptive-border";
|
2018-02-16 18:24:10 +01:00
|
|
|
|
2023-01-13 05:40:33 +01:00
|
|
|
export default function (app: App) {
|
|
|
|
app.directive("userPreview", userPreview);
|
|
|
|
app.directive("user-preview", userPreview);
|
|
|
|
app.directive("size", size);
|
|
|
|
app.directive("get-size", getSize);
|
|
|
|
app.directive("ripple", ripple);
|
|
|
|
app.directive("tooltip", tooltip);
|
|
|
|
app.directive("hotkey", hotkey);
|
|
|
|
app.directive("appear", appear);
|
|
|
|
app.directive("anim", anim);
|
|
|
|
app.directive("click-anime", clickAnime);
|
|
|
|
app.directive("panel", panel);
|
|
|
|
app.directive("adaptive-border", adaptiveBorder);
|
2020-10-17 13:12:00 +02:00
|
|
|
}
|