[solved] Upgrade Meteor 1.7 [libc++abi.dylib: terminating with uncaught exception of type std::length_error: vector]

I base on Meteor1.7 + Vue.
I got error when meteor run

// meteor run
➜  test1.7-bare meteor
[[[[[ ~/Desktop/meteor-app/test1.7-bare ]]]]]

=> Started proxy.
=> [HMR] Dev server listening on port 3003.
libc++abi.dylib: terminating with uncaught exception of type std::length_error: vector
[1]    10538 abort      meteor

My package

{
  "name": "test1.7-bare",
  "private": true,
  "scripts": {
    "start": "meteor run",
    "test": "meteor test --once --driver-package meteortesting:mocha",
    "test-app": "TEST_WATCH=1 meteor test --full-app --driver-package meteortesting:mocha",
    "visualize": "meteor --production --extra-packages bundle-visualizer"
  },
  "dependencies": {
    "@babel/runtime": "^7.0.0-beta.51",
    "bcrypt": "^2.0.1",
    "element-ui": "^2.4.1",
    "meteor-node-stubs": "^0.4.1",
    "simpl-schema": "^1.5.0",
    "vue": "^2.5.16"
  },
  "meteor": {
    "mainModule": {
      "client": "client/main.js",
      "server": "server/main.js"
    },
    "testModule": "tests/main.js"
  },
  "devDependencies": {
    "@types/lodash": "^4.14.109",
    "babel-eslint": "^8.2.3",
    "babel-helper-vue-jsx-merge-props": "^2.0.3",
    "babel-plugin-syntax-jsx": "^6.18.0",
    "babel-plugin-transform-vue-jsx": "^3.7.0",
    "eslint": "^4.19.1",
    "eslint-plugin-vue": "^4.5.0"
  }
}

It work fine, after I remove and reinstall vue component