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>
15 lines
438 B
TypeScript
15 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);
|