codeburst

Bursts of code to power through your day. Web Development articles, tutorials, and news.

Follow publication

How to Reuse Vue Components Between Projects

Jonathan Saring
codeburst
Published in
13 min readOct 7, 2019
Vue spinner components: easily reuse across projects and apps
A Vue component in bit.dev: Instantly publish. install and update anywhere

What you will learn…

Short one-time setup

git clone https://github.com/teambit/bit-vue-tutorial
cd bit-vue-tutorial
npm install

Setup Bit

Install and authenticate Bit CLI

npm install bit-bin -g
bit login

Initialize a Bit Workspace for your project

$ bit init
successfully initialized a bit workspace.
"bit": {
"env": {},
"componentsDefaultDirectory": "components/{name}",
"packageManager": "npm"
}

Let’s share Vue the component

Example of the Vue product-list component shared to bit.dev

Let Bit track and isolate the component

$ bit add src/components/productList.vue --id product-list
tracking component product-list:
tracking component product-list:
added src/components/productList.vue
$ bit status> product-list ...  issues found  
untracked file dependencies (use "bit add <file>" to track untracked files as components):
src/components/ProductList.vue -> src/assets/products.js
$bit add src/assets/products.js --id product-list
tracking component product-list:
added src/assets/products.js
added src/components/productList.vue
$ bit status
new components
(use "bit tag --all [version]" to lock a version with all your changes)
> product-list ... ok

Define a compiler and build the code; no configurations!

$bit import bit.envs/bundlers/vue --compiler
the following component environments were installed
- bit.envs/bundlers/vue@2.6.10
"env": {
"compiler": "bit.envs/bundlers/vue@2.6.10"
},
bit build

Export (publish) the component from the project

$ bit tag --all 0.0.1
1 component(s) tagged
(use "bit export [collection]" to push these components to a remote")
(use "bit untag" to unstage versions)
new components
(first version for components)
> product-list@0.0.1
$ bit status
staged components
(use "bit export <remote_scope> to push these components to a remote scope")
> product-list. versions: 0.0.1 ... ok
$ bit export <username>.vue-tutorial
exported 1 components to scope <username>.vue-tutorial
$ bit status
nothing to tag or export
$ bit list

Discover and explore your reusable components

Vue components in bit.dev: discover, explore, reuse

Install the component in a new project

npx @vue/cli create my-new-vue
vue create my-new-vue

Install the component with npm

npm login --registry=https://node.bit.dev --scope=@bit
npm install @bit/<username>.vue-tutorial.product-list --save
"@bit/<username>.vue-tutorial.product-list": "0.0.1"

Use in your application

<template>
<div id="app">
<ProductList />
</div>
</template>
<script>
import ProductList from '@bit/<username>.vue-tutorial.product-list';
export default {
name: 'app',
components: {
ProductList
}
}
</script>
npm run serve

Use Bit to modify the code right from the new project (!)

Import the Component

bit init
$ bit import <username>.vue-tutorial/product-list
bit import <username>.vue-tutorial/product-list
successfully imported one component
- added <username>.vue-tutorial/product-list new versions: 0.0.1, currently used version 0.0.1
"@bit/<username>.vue-tutorial.product-list": "file:./components/product-list"

Update the code

view() {
window.alert('The product has been viewed!');
}
<template>
<div>
<h2>Products</h2>
<template v-for="(product, index ) of products">
<div v-bind:key={index}>
<h3>
<a>
{{ product.name }}
</a>
</h3>
<p v-if="product.description">
Description: {{ product.description }}
</p>
<button @click="share">
Share
</button>
<button @click="view">
View
</button>
</div>
</template>
</div>
</template>
npm run serve
successfully installed the bit.envs/bundlers/Vue@2.5.2 compiler
module.exports = {
configureWebpack: {
resolve: {
symlinks: false // support npm link
},
}
}

Update the code changes

bit status
modified components
(use "bit tag --all [version]" to lock a version with all your changes)
(use "bit diff" to compare changes)
> product-list ... ok
$ bit tag product-list
1 component(s) tagged
(use "bit export [collection]" to push these components to a remote")
(use "bit untag" to unstage versions)
changed components
(components that got a version bump)
> <username>.vue-tutorial/product-list@0.0.2
$ bit export <username>.vue-tutorial
exported 1 components to scope <username>.vue-tutorial

Get component updates

Import code changes

$ bit import
successfully imported one component
- updated <username>.vue-tutorial/product-list new versions: 0.0.2
$ bit status
pending updates
(use "bit checkout [version] [component_id]" to merge changes)
(use "bit diff [component_id] [new_version]" to compare changes)
(use "bit log [component_id]" to list all available versions)
> <username>.vue-tutorial/product-list current: 0.0.1 latest: 0.0.2

Checkout

$ bit checkout 0.0.2 product-list
successfully switched <username>.vue-tutorial/product-list to version 0.0.2
updated src/assets/products.js
updated src/components/productList.vue
npm run serve

Conclusion

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

Responses (1)

Write a response