mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-17 15:37:30 -07: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) {
|
||
|
|
||
|
}
|
||
|
};
|