1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-03 23:06:20 +02:00
This commit is contained in:
syuilo
2018-02-13 08:26:07 +09:00
parent 0158808501
commit 143088b9ef

View File

@@ -6,7 +6,7 @@
import Vue from 'vue';
import { themeColor } from '../../../config';
const Vec2 = function(x, y) {
const Vec2 = function(this: any, x, y) {
this.x = x;
this.y = y;
};