# repl **Repository Path**: cw2016/repl ## Basic Information - **Project Name**: repl - **Description**: Vue SFC REPL as a Vue 3 component - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 3 - **Created**: 2023-09-21 - **Last Updated**: 2023-09-21 ## 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 ```