skeleton-ui
Version:
skeleton project of vue at the core of JavaScript function
22 lines (16 loc) • 625 B
JavaScript
import SkeletonCard from './card';
const install = function(Vue, opts = {}) {
console.log('====================================');
console.log(SkeletonCard.name);
console.log('====================================');
Vue.component(SkeletonCard.name, SkeletonCard);
};
console.log('====================================');
console.log(SkeletonCard.name);
console.log('====================================');
/* istanbul ignore if */
if (typeof window !== 'undefined' && window.Vue) {
install(window.Vue);
}
module.exports = { install, SkeletonCard };
module.exports.default = module.exports;