Skip to content
chenwangji edited this page Nov 29, 2019 · 1 revision

Vue 源码

vue 常用于获取类似 str = "a.b" 的一个逻辑

let arr = str.split('.')
let val = vm

arr.forEach(arr => {
  val = val[arr] // 最后获取到 this.a.b 的值
})
Clone this wiki locally