(path, handler)
| 2664 | })(); |
| 2665 | |
| 2666 | function guardComponent(path, handler) { |
| 2667 | var comp = handler.component; |
| 2668 | if (Vue.util.isPlainObject(comp)) { |
| 2669 | comp = handler.component = Vue.extend(comp); |
| 2670 | } |
| 2671 | /* istanbul ignore if */ |
| 2672 | if (typeof comp !== 'function') { |
| 2673 | handler.component = null; |
| 2674 | warn$1('invalid component for route "' + path + '".'); |
| 2675 | } |
| 2676 | } |
| 2677 | |
| 2678 | /* Installation */ |
| 2679 |