# vue-repl **Repository Path**: mirrors_vuetifyjs/vue-repl ## Basic Information - **Project Name**: vue-repl - **Description**: Vue SFC REPL as a Vue 3 component - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-10-24 - **Last Updated**: 2026-05-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # @vue/repl Vue SFC REPL as a Vue 3 component. ## Basic Usage **Note: 2.0 now supports Monaco Editor, but also requires explicitly passing in the editor to be used for tree-shaking.** ### With CodeMirror Editor Basic editing experience with no intellisense. Lighter weight, fewer network requests, better for embedding use cases. ```vue ``` ### With Monaco Editor With Volar support, autocomplete, type inference, and semantic highlighting. Heavier bundle, loads dts files from CDN, better for standalone use cases. ```vue ``` ## Advanced Usage Customize the behavior of the REPL by manually initializing the store. ```vue ```