UNPKG

vue-content-placeholders

Version:

Vue Components for rendering animated content placeholders like facebook

37 lines (31 loc) 1.02 kB
import ContentPlaceholders from './components/ContentPlaceholders.vue' import ContentPlaceholdersHeading from './components/ContentPlaceholdersHeading.vue' import ContentPlaceholdersImg from './components/ContentPlaceholdersImg.vue' import ContentPlaceholdersText from './components/ContentPlaceholdersText.vue' export function install (Vue) { Vue.component('ContentPlaceholders', ContentPlaceholders) Vue.component('ContentPlaceholdersHeading', ContentPlaceholdersHeading) Vue.component('ContentPlaceholdersImg', ContentPlaceholdersImg) Vue.component('ContentPlaceholdersText', ContentPlaceholdersText) } export { ContentPlaceholders, ContentPlaceholdersHeading, ContentPlaceholdersImg, ContentPlaceholdersText, } const plugin = { version: VERSION, install, } export default plugin // Auto-install let GlobalVue = null if (typeof window !== 'undefined') { GlobalVue = window.Vue } else if (typeof global !== 'undefined') { GlobalVue = global.Vue } if (GlobalVue) { GlobalVue.use(plugin) }