Skip to content

Instantly share code, notes, and snippets.

@lee-chase
Last active February 20, 2019 11:59
Show Gist options
  • Save lee-chase/e86e192362f9967eb205ed390756a922 to your computer and use it in GitHub Desktop.
Save lee-chase/e86e192362f9967eb205ed390756a922 to your computer and use it in GitHub Desktop.
@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