mirror of
https://github.com/misskey-dev/misskey.git
synced 2025-01-11 01:00:07 +09:00
27 lines
476 B
TypeScript
27 lines
476 B
TypeScript
import Particle from '../components/particle.vue';
|
|
|
|
export default {
|
|
bind(el, binding, vn) {
|
|
el.addEventListener('click', () => {
|
|
const rect = el.getBoundingClientRect();
|
|
|
|
const x = rect.left + (el.clientWidth / 2);
|
|
const y = rect.top + (el.clientHeight / 2);
|
|
|
|
const particle = new Particle({
|
|
parent: vn.context,
|
|
propsData: {
|
|
x,
|
|
y
|
|
}
|
|
}).$mount();
|
|
|
|
document.body.appendChild(particle.$el);
|
|
});
|
|
},
|
|
|
|
unbind(el, binding, vn) {
|
|
|
|
}
|
|
};
|