From b67614f78c01b9213877545c008d44022bcd109a Mon Sep 17 00:00:00 2001 From: Pooya Golchian Date: Sat, 6 Apr 2024 15:22:06 +0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=84=20refactor:=20convert=20Vue=20code?= =?UTF-8?q?=20block=20to=20JavaScript=20in=20readme?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- readme.md | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/readme.md b/readme.md index f49fbcb..366e2f5 100644 --- a/readme.md +++ b/readme.md @@ -36,20 +36,19 @@ Register VueMultipleThemes as a component in the parent component or in your Vue Locally in a Component -```vue +```javascript import VueMultipleThemes from './VueMultipleThemes.vue'; // Adjust the path as necessary - -export default { -name: 'App', -components: { -VueMultipleThemes -} + export default { + name: 'App', + components: { + VueMultipleThemes + } }; ``` Globally in Your Vue Application -```vue +```javascript import Vue from 'vue'; import VueMultipleThemes from './VueMultipleThemes.vue'; // Adjust the path as necessary