# vue-3-core **Repository Path**: SZJ-914033688/vue-3-core ## Basic Information - **Project Name**: vue-3-core - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-10-18 - **Last Updated**: 2024-12-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 从 0-1 手写 Vue3 核心源码 ## 环境搭建 - 创建项目并初始化项目 ```shell # 创建项目目录 mkdir vue-3-core & cd vue-3-core # 项目初始化 yarn init -y ``` - 配置 package.json 文件 ```json { "private": true, "workspaces": ["packages/*"], "name": "vue-3-core", "version": "1.0.0", "main": "index.js", "license": "MIT" } ```