Design components to do one thing well, be generic, and use props and events for communication; 2. Use props for input and emit events for output, defining types and using emits for clarity; 3. Use slots—especially named and default slots—to enable flexible content insertion; 4. Apply scoped styles and CSS variables to prevent conflicts and allow theme customization; 5. Organize reusable components in a dedicated folder like UI/ and export them via an index file for easy importing; additionally, document components, validate props, avoid hardcoded text, and write tests to ensure reliability and maintainability—this approach ensures truly reusable Vue components.
Creating reusable components in Vue is one of the core strengths of the framework. Well-designed components can be used across different parts of your app or even in other projects, saving time and keeping your codebase clean. Here’s how to build truly reusable Vue components effectively.

1. Design for Reusability from the Start
Before writing any code, think about what makes a component reusable:
- It should do one thing well (follow the single responsibility principle).
- It should be generic, not tied to a specific page or context.
- It should accept input via props and emit events instead of manipulating external state directly.
For example, instead of creating a "UserDeleteButton" that only works for users, create a generic ConfirmButton that asks for confirmation before triggering an action.

<!-- ConfirmButton.vue --> <template> <button @click="onClick"> {{ label }} </button> </template> <script> export default { props: { label: { type: String, required: true }, confirmMessage: { type: String, default: 'Are you sure?' } }, methods: { onClick() { if (window.confirm(this.confirmMessage)) { this.$emit('confirmed'); } } } }; </script>
Now you can reuse it anywhere:
<ConfirmButton label="Delete User" confirmMessage="Delete this user? This can't be undone." @confirmed="handleDelete" />
2. Use Props and Events Properly
Props let parents pass data down; events let children communicate back up. This unidirectional flow makes components predictable and reusable.

Best practices:
- Define clear prop types and defaults.
- Use
emits
option to declare custom events (Vue 3) or validate them (Vue 2 withvue-emits
plugin or manually). - Avoid mutating props directly — instead, emit an event.
Example: A reusable input component
<!-- TextInput.vue --> <template> <div> <label v-if="label">{{ label }}</label> <input :value="modelValue" @input="$emit('update:modelValue', $event.target.value)" :type="type" :placeholder="placeholder" /> </div> </template> <script> export default { props: ['modelValue', 'label', 'type', 'placeholder'], emits: ['update:modelValue'] }; </script>
Use it with v-model
:
<TextInput v-model="username" label="Username" placeholder="Enter username" />
Note: In Vue 3,
modelValue
update:modelValue
is the default forv-model
. You can customize it with argument syntax if needed.
3. Leverage Slots for Flexibility
Slots allow you to pass template fragments into components, making them more flexible than props alone.
Use cases:
- Wrapper components (cards, modals, layouts)
- Components with dynamic content
Example: A reusable card component
<!-- Card.vue --> <template> <div class="card"> <div class="card-header"> <slot name="header"> <h3>{{ title }}</h3> </slot> </div> <div class="card-body"> <slot /> </div> <div class="card-footer"> <slot name="footer" /> </div> </div> </template> <script> export default { props: ['title'] }; </script>
Usage:
<Card title="Profile"> <p>User profile information goes here.</p> <template #footer> <button>Save</button> </template> </Card>
This way, the same Card
can be used in many contexts with different content.
4. Keep Styles Scoped and Theme-Friendly
To avoid style conflicts and ensure reusability:
- Use
scoped
styles or CSS classes with unique names. - Use CSS variables for theming so styles can be customized without rewriting.
<style scoped> .card { border: 1px solid var(--border-color, #ddd); border-radius: 8px; padding: 16px; background: var(--card-bg, #fff); } </style>
Now consumers can override appearance:
<Card style="--card-bg: #f0f8ff; --border-color: #9ec5ff" />
5. Organize and Export Components Properly
Place reusable components in a dedicated folder like components/UI/
or components/Shared/
.
Example structure:
src/ └── components/ └── UI/ Button.vue Input.vue Modal.vue Card.vue
You can create an index file to export them:
// @/components/UI/index.js export { default as UIButton } from './Button.vue'; export { default as UIInput } from './Input.vue'; export { default as UICard } from './Card.vue';
Then import anywhere:
import { UIButton, UICard } from '@/components/UI';
In larger apps, consider publishing common components as a separate package (e.g., using Vite Vue Component Library setup).
Bonus Tips
- Document your components: Use comments or tools like Storybook to show usage examples.
- Validate props aggressively: Helps catch errors early and makes usage clearer.
- Avoid hardcoding text: Use props or i18n support for labels.
- Test them: Especially if used widely, write unit tests for edge cases.
Reusable Vue components aren’t just about code — they’re about designing flexible, predictable interfaces. Focus on clear APIs (props/events/slots), avoid side effects, and think about how others (or future you) will use the component.
Basically: props in, events out, slots for content, and styles that don’t clash. That’s the recipe.
The above is the detailed content of How to create reusable components in Vue. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The computed properties of Vue.js cannot directly accept parameters, which is determined by its design characteristics, but can be implemented indirectly through the computed properties of methods or return functions. 1. Methods: Parameters can be passed and used in templates or listeners, such as formatName('John','Doe'); 2. Encapsulate the computed attributes into the form of a return function: such as formatName returns a function that accepts parameters, and call formatName()('Jane','Smith') in the template. The method of use is usually recommended because it is clearer and easier to maintain, and the way of returning functions is suitable for special scenarios where internal state and external values ??are required.

HeadlessUIinVue refers to a library of UI components that provide no preset styles and only contains core logic and behavior. Its features include: 1. No style restrictions, developers can customize the design; 2. Focus on barrier-free and interactive logic, such as keyboard navigation, state management, etc.; 3. Support Vue framework integration, exposing the control interface through combinable functions or components. Reasons for use include: maintaining design consistency, built-in accessibility, strong component reusability, and lightweight library size. In practical applications, developers need to write HTML and CSS themselves. For example, when building a drop-down menu, the library handles state and interaction, while developers decide on visual presentation. Mainstream libraries include HeadlessUI and RadixVue for TailwindLabs, suitable for

In Vue3, there are three ways to monitor nested properties using the watch function: 1. Use the getter function to accurately monitor specific nested paths, such as watch(()=>someObject.nested.property,callback); 2. Add the {deep:true} option to deeply monitor changes within the entire object, which is suitable for situations where the structure is complex and does not care about which property changes; 3. Return an array in the getter to listen to multiple nested values ??at the same time, which can be used in combination with deep:true; in addition, if ref is used, the nested properties in its .value need to be tracked through getter.

Building a Vue component library requires designing the structure around the business scenario and following the complete process of development, testing and release. 1. The structural design should be classified according to functional modules, including basic components, layout components and business components; 2. Use SCSS or CSS variables to unify the theme and style; 3. Unify the naming specifications and introduce ESLint and Prettier to ensure the consistent code style; 4. Display the usage of components on the supporting document site; 5. Use Vite and other tools to package as NPM packages and configure rollupOptions; 6. Follow the semver specification to manage versions and changelogs when publishing.

It is recommended to use Vite to create Vue3 projects because it uses the browser's native ES module support and has a fast startup speed in development mode. 1. Make sure to install Node.js (16.x or higher) and npm/yarn/pnpm; 2. Run npmcreatevite@latestmy-vue-app--templatevue initialization project; 3. Follow the prompts to select TypeScript, VueRouter and other configurations; 4. Execute cdmy-vue-app and npminstall installation dependencies; 5. Use npmrundev to start the development server. Optional configurations include automatic browser opening, proxy settings, alias paths, and packaging optimizations. Recommended insurance

Vue3 has improved in many key aspects compared to Vue2. 1.Composition API provides a more flexible logical organization method, allowing centralized management of related logic, while still supporting Vue2's Options API; 2. Better performance and smaller package size, the core library is reduced by about 30%, the rendering speed is faster and supports better tree shake optimization; 3. The responsive system uses ES6Proxy to solve the problem of unable to automatically track attribute addition and deletion in Vue2, making the responsive mechanism more natural and consistent; 4. Built-in better support for TypeScript, support multiple node fragments and custom renderer API, improving flexibility and future adaptability. Overall, Vue3 is a smooth upgrade to Vue2,

Defining routes in Vue projects requires understanding the structure and configuration. The steps are as follows: 1. Install and introduce vue-router, create a routing instance, and pass in a routes array containing path and component; 2. Use dynamic routing matching such as /user/:id to obtain parameters; 3. Use children attribute to implement nested routes; 4. Name the routes with the name attribute for jumping; 5. Use redirect for path redirect. After mastering these core points, you can configure routing efficiently.

VueDevtools is a browser extension for debugging Vue.js applications, providing real-time viewing and editing functions of component structure, props, data, etc. 1. Installation method: Search for "Vue.jsdevtools" in Chrome or Firefox browser and add extensions; 2. Enable method: During local development, you need to set Vue.config.devtools=true in the entry file; 3. Core functions: component tree viewing, props and data tracking, event monitoring, performance timeline analysis; 4. Frequently asked questions: Ensure a non-production environment, register Vuexstore correctly, use a beta version that is suitable for Vue3, and try independent Elec
