mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 04:23:08 +02:00
111eb43fd9
* Add title attr with buttons on the post form * fix * tooltip * missing ; * remove title attr * fix bug * Update reactions-viewer.details.vue * help wip * ok! * i18n Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
14 lines
438 B
TypeScript
14 lines
438 B
TypeScript
import Vue from 'vue';
|
|
|
|
import userPreview from './user-preview';
|
|
import autocomplete from './autocomplete';
|
|
import size from './size';
|
|
import particle from './particle';
|
|
import tooltip from './tooltip';
|
|
|
|
Vue.directive('autocomplete', autocomplete);
|
|
Vue.directive('userPreview', userPreview);
|
|
Vue.directive('user-preview', userPreview);
|
|
Vue.directive('size', size);
|
|
Vue.directive('particle', particle);
|
|
Vue.directive('tooltip', tooltip);
|