From 6e7050389e65b6eec3ae39541e1eb047272051ec Mon Sep 17 00:00:00 2001 From: Fritz Lin Date: Thu, 28 Sep 2017 21:37:51 +0800 Subject: [PATCH] fix(ie): dataset.index => getAttribute(''data-index), ref #22 --- src/At.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/At.vue b/src/At.vue index 3403fef..9cf0b20 100644 --- a/src/At.vue +++ b/src/At.vue @@ -253,7 +253,7 @@ export default { }, selectByMouse (e) { const el = closest(e.target, d => d.dataset.index) - const cur = +el.dataset.index + const cur = +el.getAttribute('data-index') this.atwho = { ...this.atwho, cur