mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-25 03:33:08 +02:00
2470afaa2e
* wip * Update CHANGELOG.md * wip * wip * wip * Update create.ts * wip * wip * Update CHANGELOG.md * wip * wip * wip * wip * wip * wip * wip * Update CHANGELOG.md * wip * wip * Update delete.ts * Update delete.ts * wip * wip * wip * Update account-info.vue * wip * wip * Update settings.vue * Update user-info.vue * wip * Update show-file.ts * Update show-user.ts * wip * wip * Update delete.ts * wip * wip * Update overview.moderators.vue * Create 1673500412259-Role.js * wip * wip * Update roles.vue * 色 * Update roles.vue * integrate silence * wip * wip
28 lines
916 B
TypeScript
28 lines
916 B
TypeScript
import { App } from 'vue';
|
|
|
|
import userPreview from './user-preview';
|
|
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';
|
|
import adaptiveBg from './adaptive-bg';
|
|
|
|
export default function(app: App) {
|
|
app.directive('userPreview', userPreview);
|
|
app.directive('user-preview', userPreview);
|
|
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);
|
|
app.directive('adaptive-bg', adaptiveBg);
|
|
}
|