Skip to content

Commit

Permalink
Wrong import path of css file (#470)
Browse files Browse the repository at this point in the history
  • Loading branch information
philipdalen committed Jun 11, 2024
1 parent 9ba9ebb commit 7b66a68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/guide/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Install the plugin into Vue:
import { createApp } from 'vue';
import App from './App.vue';
import VueTelInput from 'vue-tel-input';
import 'vue-tel-input/vue-tel-input.css';
import 'vue-tel-input/dist/vue-tel-input.css';

const globalOptions = {
mode: 'auto',
Expand All @@ -35,7 +35,7 @@ Or use the component directly:
<script>
import { ref } from 'vue';
import { VueTelInput } from 'vue-tel-input';
import 'vue-tel-input/vue-tel-input.css';
import 'vue-tel-input/dist/vue-tel-input.css';
export default {
components: {
Expand Down

0 comments on commit 7b66a68

Please sign in to comment.