mirror of
https://github.com/youzan/vant.git
synced 2025-10-19 01:54:48 +00:00
7 lines
119 B
JavaScript
7 lines
119 B
JavaScript
/**
|
|
* Install function to register a component
|
|
*/
|
|
export default function(Vue) {
|
|
Vue.component(this.name, this);
|
|
}
|