(opts, vm)
| 234 | } |
| 235 | |
| 236 | export function init(opts, vm) { |
| 237 | const keywords = vm.router.parse().query.s; |
| 238 | |
| 239 | updateOptions(opts); |
| 240 | style(); |
| 241 | tpl(keywords); |
| 242 | bindEvents(); |
| 243 | keywords && setTimeout(_ => doSearch(keywords), 500); |
| 244 | } |
| 245 | |
| 246 | export function update(opts, vm) { |
| 247 | updateOptions(opts); |
nothing calls this directly
no test coverage detected
searching dependent graphs…