Bits and Pieces

Insightful articles, step-by-step tutorials, and the latest news on full-stack composable software development

Follow publication

Getting Started with a New Vue.js Project in 2023

Lakindu Hewawasam
Bits and Pieces
Published in
10 min readJun 8, 2023

A short backstory — Vue.js

Yet, it still wasn’t enough.

Well, how can we do better?

So, what exactly is a distributed component-driven architecture?

Figure: A distributed component tree

Let’s build a distributed component-driven app with Vue.js

Step 01 — Pre-requisites

npx @teambit/bvm install
Figure: Verifying the installation of Bit
Figure — Creating the demo scope

Step 02 — Initializing the development environment

bit new vue my-workspace --env teambit.vue/vue --default-scope my-org.my-scope
Figure: Starting the development server

Step 03 — Creating a Vue.js component

bit create vue <<NAMESPACE>>/<<COMPONENT-NAME>>
Figure: Exploring the directory

Step 04 — Developing a Vue.js component

import { render } from "@testing-library/vue";
import { BasicButton, BlueButton, ButtonWithCustomGoodByeWorldLabel } from "./button.composition";

it("should render with the correct text", () => {
const { getByText } = render(BasicButton);
const rendered = getByText("Hello World");
expect(rendered).toBeTruthy();
});

it("should render button with label Hello World with the blue color", () => {
const { getByText } = render(BlueButton);
const rendered = getByText("Hello World");
expect(rendered.style.background).toBe('blue');
});


it("should render button with label Goodbye World", () => {
const { getByText } = render(ButtonWithCustomGoodByeWorldLabel);
const rendered = getByText("Goodbye World");
expect(rendered).toBeTruthy();
});
<script setup lang="ts">
import { defineProps, computed } from "vue";

const props = defineProps({
label: {
type: String,
default: "Hello World",
required: false,
},
style: {
type: Object,
default: () => ({}),
required: false,
},
});

const buttonStyle = computed(() => {
return props.style;
});
</script>

<template>
<button :style="buttonStyle">{{ label }}</button>
</template>
Figure: The defined component
// button-blue.fixture.vue

<script setup>
import Button from "./button.vue";
</script>

<template>
<Button label="Hello World" :style="{
background: 'blue'
}" />
</template>

// button-goodbye-world.fixture.vue

<script setup>
import Button from "./button.vue";
</script>

<template>
<Button label="Goodbye World" />
</template>
import BasicButton from "./button-basic.fixture.vue";
import BlueButton from "./button-blue.fixture.vue";
import ButtonWithCustomGoodByeWorldLabel from "./button-goodbye-world.fixture.vue"

export { BasicButton, BlueButton, ButtonWithCustomGoodByeWorldLabel };

Step 05 — Building a Vue.js application

bit create vue-app apps/hello-app
Figure: Folder structure for the App component
<script setup lang="ts">
import Button from "@lakindu2002/demo-vue-js.design.button";

</script>

<template>
<Button label="Hello World" />
</template>
bit use apps/hello-app
bit run hello-app-app
Figure: Browsing the app

Step 06 — Versioning and sharing the code

Well, wasn’t this a promising approach for developing Vue.js apps?

Versioning independent components the easy way using Bit

Micro-Frontends

Design System

Code-Sharing and reuse

Monorepo

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