Skip to content

Instantly share code, notes, and snippets.

@lee-chase
Last active February 20, 2019 11:59
@carbon/vue example/main.js
import Vue from "vue";
import App from "./App.vue";
// add an import for @carbon/vue
import CarbonComponentsVue from "@carbon/vue/src/index";
Vue.use(CarbonComponentsVue);
new Vue({
render: h => h(App)
}).$mount("#app");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment