summaryrefslogtreecommitdiff
path: root/src/client/directives/index.ts
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2021-10-08 22:03:06 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2021-10-08 22:03:06 +0900
commit748a451e233f71dd493f7dd80062278dacaa5e1c (patch)
tree7a91b9123f63dcf468f460c3068ae3dbe6210d01 /src/client/directives/index.ts
parentfix(api): (0 , ms_1.default) is not a function (diff)
downloadmisskey-748a451e233f71dd493f7dd80062278dacaa5e1c.tar.gz
misskey-748a451e233f71dd493f7dd80062278dacaa5e1c.tar.bz2
misskey-748a451e233f71dd493f7dd80062278dacaa5e1c.zip
:art:
Diffstat (limited to 'src/client/directives/index.ts')
-rw-r--r--src/client/directives/index.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/directives/index.ts b/src/client/directives/index.ts
index f0a0123771..cd71bc26d3 100644
--- a/src/client/directives/index.ts
+++ b/src/client/directives/index.ts
@@ -2,6 +2,7 @@ import { App } from 'vue';
import userPreview from './user-preview';
import size from './size';
+import getSize from './get-size';
import particle from './particle';
import tooltip from './tooltip';
import hotkey from './hotkey';
@@ -14,6 +15,7 @@ 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('particle', particle);
app.directive('tooltip', tooltip);
app.directive('hotkey', hotkey);