Ship internal tools in hours, not weeks. Real auth, users, jobs, audit logs, and cohesive UI included. Early access $249 $499 → [Get it now]

How to migrate Vue 2 to Vue 3

Migrating from Vue 2 to Vue 3 requires addressing breaking changes in the API, removed features, and updated behavior. As the creator of CoreUI with over 10 years of Vue.js experience since 2014, I’ve led Vue 2 to Vue 3 migrations for large applications and open-source libraries. The most effective approach uses the official migration build to run Vue 3 with Vue 2 compatibility flags, then addresses warnings one by one. This incremental strategy avoids a big-bang rewrite.

Read More…

How to migrate Options API to Composition API in Vue

Migrating from Options API to Composition API improves code organization, TypeScript support, and logic reusability across components. As the creator of CoreUI with over 10 years of Vue.js experience since 2014, I’ve led migrations for large Vue 2 codebases to the Composition API. The key is mapping each Options API section - data, computed, methods, watch, and lifecycle hooks - to their Composition API equivalents. The logic becomes more collocated and easier to extract into reusable composables.

Read More…

How to use Cypress for Vue E2E tests

End-to-end tests with Cypress verify complete user flows by running real browser interactions against your Vue application. As the creator of CoreUI with over 10 years of Vue.js experience since 2014, I’ve used Cypress to catch integration issues that unit tests miss, like broken API connections and routing bugs. The standard approach installs Cypress, writes specs using its chainable commands, and runs them against a local or staging server. This provides high confidence that users can actually complete their tasks.

Read More…

How to snapshot test Vue components

Snapshot tests capture the rendered output of components and alert you when it changes unexpectedly. As the creator of CoreUI with over 10 years of Vue.js experience since 2014, I’ve used snapshot testing to catch accidental regressions in UI components across hundreds of components. The standard approach uses @vue/test-utils to mount components and Vitest’s toMatchSnapshot to compare renders against stored snapshots. This provides an automatic safety net for your component’s output.

Read More…

How to mock API in Vue tests

Mocking API calls in Vue tests ensures tests run fast, reliably, and without external dependencies. As the creator of CoreUI with over 10 years of Vue.js experience since 2014, I’ve written thousands of tests that mock API responses to verify component behavior under various scenarios. The most effective approach uses Vitest’s mocking utilities to mock fetch or axios calls, returning controlled responses for different test cases. This provides predictable, isolated tests that don’t depend on external services.

Read More…

How to test Vuex store in Vue

Testing Vuex stores ensures state management logic works correctly before integrating with components. As the creator of CoreUI with over 10 years of Vue.js experience since 2014, I’ve written comprehensive test suites for Vuex stores in complex applications with hundreds of state mutations and actions. The most effective approach tests each store module in isolation - mutations synchronously, actions with mocked API calls, and getters with sample state. This provides confidence that state management logic is reliable and catches bugs early.

Read More…

How to test Vue components with Vue Test Utils

Testing Vue components ensures they render correctly, handle user interactions, and emit events as expected. As the creator of CoreUI with over 10 years of Vue.js experience since 2014, I’ve written thousands of component tests to maintain code quality in production applications. The recommended approach uses Vue Test Utils for component mounting and interaction, combined with Vitest for running tests and assertions. This combination provides fast, reliable tests with excellent TypeScript support.

Read More…

How to configure lint-staged in Vue

Configuring lint-staged ensures code quality by automatically running linters and formatters on staged files before each commit. As the creator of CoreUI with over 10 years of Vue.js experience since 2014, I’ve set up lint-staged in countless Vue projects to maintain consistent code style across teams. The most effective approach combines lint-staged with husky for git hooks, ESLint for linting, and Prettier for formatting. This setup catches issues early and prevents poorly formatted code from entering the repository.

Read More…

How to test Vue components with Jest

Testing Vue components is essential for maintaining code quality and preventing regressions as your application grows and evolves. With over 10 years of experience building Vue applications since 2014 and as the creator of CoreUI, a widely used open-source UI library, I’ve written thousands of component tests in production environments. The most effective approach is to use Jest with Vue Test Utils, which provides a comprehensive testing framework with excellent Vue integration. This combination offers fast test execution, powerful matchers, and intuitive component mounting and interaction APIs.

Read More…

How to run unit tests in Vue

Testing Vue components ensures your application works correctly and prevents regressions when refactoring or adding features. With 12 years of experience building Vue applications since 2014 and as the creator of CoreUI, I’ve established comprehensive testing strategies for production applications. The most efficient approach is using Vitest with Vue Test Utils, which provides fast test execution, Vue 3 Composition API support, and seamless integration with Vite. This combination offers instant feedback during development and reliable test coverage for components, composables, and business logic.

Read More…
Subscribe to our newsletter
Get early information about new products, product updates and blog posts.
What is globalThis in JavaScript?
What is globalThis in JavaScript?

How to Add a Tab in HTML
How to Add a Tab in HTML

How to Use Bootstrap Dropdown in Angular – CoreUI Integration Guide
How to Use Bootstrap Dropdown in Angular – CoreUI Integration Guide

How to Use Bootstrap Dropdown in React the Right Way – with CoreUI
How to Use Bootstrap Dropdown in React the Right Way – with CoreUI

Answers by CoreUI Core Team