Step-by-Step Guide: Configuring and Running the RuoYi-Cloud Microservice Framework (Vue2 Edition)
Prerequisites
This is a personal summary of my experience learning the RuoYi-Cloud framework. There may be errors and omissions. If this fails to help you, please seek assistance from other bloggers.
Project File
RuoYi-Cloud: 🎉 A distributed microservice architecture permission management system based on Spring Boot, Spring Cloud & Alibab ...
Posted on Thu, 24 Sep 2026 16:34:36 +0000 by theo
Component-Based Programming in Vue 2
In component-based architecture, a module refers to a self-contained JavaScript unit—typically a file—that provides specific functionality. Modules help manage complexity in large codebases by isolating logic for reuse, simplifying maintenance, and improving execution efficiency. A component extends this concept to encapsulate not only JavaScri ...
Posted on Tue, 25 Aug 2026 16:07:17 +0000 by newdles
Creating Dynamic Charts with Vue 2 and Echarts
Introduction to Vue 2 and Echarts Integration
This guide demonstrates how to integrate Echarts with Vue 2 to create dynamic data visualizations. Echarts is a powerful, open-source JavaScript charting library that can be seamlessly integrated into Vue applications.
Basic Chart Implementation
<template>
<div>
<div>Sample C ...
Posted on Mon, 24 Aug 2026 16:31:17 +0000 by kenchucky
How to implement v-model for custom components in Vue2 and Vue3
This article demonstrates how to implement v-model functionality in custom components, using input as an example. We'll create a custom component named z-input that can be used with v-model in a parent component like this:
<template>
<z-input v-model="msg" />
</template>
<!-- JS code omitted -->
Both Vue 2 ...
Posted on Sun, 12 Jul 2026 17:21:25 +0000 by chaiwei
Resolving Legacy Vue and Element UI Integration Conflicts on Modern Development Environments
Core Framwork Incompatibility
Merging Element UI with Vue 3 is structurally unsupported. The component library was engineered around Vue 2’s global constructor and synchronous plugin registration. When a codebase incorrectly references Vue 3 alongside this UI suite, the application fails during bootstrapping, typically throwing TypeError: undef ...
Posted on Tue, 30 Jun 2026 16:20:03 +0000 by hustler
High-Performance Virtual Scrolling Select Component for Vue 2 Tables
When embedding input fields or dropdown selects inside table cells, rendering large datasest can freeze the browser or exhaust memory before the options even finish loading. A virtual scrolling strategy miitgates this by only rendering visible items.
Below is an implementation using vue-virtual-scroller to build a performant select popover suit ...
Posted on Sun, 21 Jun 2026 16:59:49 +0000 by Aethaellyn
Vue 2 Development Fundamentals with Modern JavaScript
Template Syntax and Data Rendering
Bind data to the DOM using mustache syntax or directives.
<div id="root">
<p>{{ greeting }}</p>
<span v-text="rawText"></span>
<div v-html="htmlContent"></div>
<input v-model="formInput" placeholder="Type here&quo ...
Posted on Sun, 21 Jun 2026 16:21:33 +0000 by Ozzapoo
Creating Horizontal Bar Charts with Gradient Colors Using ECharts in Vue 2
Creating the Chart Container
First, establish a container element for the chart using a template ref:
<div class="chart-container" ref="chartRef"></div>
Initializing the Chart Instance
Retrieve the DOM element and insatntiate the ECharts instance:
let chartDom = this.$refs.chartRef;
this.chartInstance = echarts. ...
Posted on Sat, 23 May 2026 22:39:27 +0000 by dizzy1
Integrating WangEditor v5 with Vue 2: Reusable Component Architecture and Upload Handling
Begin by installing the official Vue adapter package to establish the bridge between the framework and the editor engine.
npm install @wangeditor/editor-for-vue --save
Minimal Component Registration
A basic integration relies on local component binding. The following pattern demonstrates a clean setup using Vue 2's Options API:
<template> ...
Posted on Tue, 19 May 2026 23:00:03 +0000 by eva21
Vue2 Core Concepts and Implementation Guide
Data Proxy in Vue2
Data proxy refers to the process of performing operations (read/write) on one object's properties through another object.
Vue2 Data Proxy Implementation
Vue2 implements data proxy through the Vue instance (vm), allowing operations on properties within the data object. This approach provides several advantages:
Simplified dat ...
Posted on Sun, 17 May 2026 15:23:42 +0000 by mchip