Skip to content

Commit

Permalink
πŸ”„ refactor: convert Vue code block to JavaScript in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
pooyagolchian committed Apr 6, 2024
1 parent e16c7e6 commit b67614f
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b67614f

Please sign in to comment.