vue-tel-input 8.1.1 → 8.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -37,7 +37,7 @@ International Telephone Input with Vue.
|
|
|
37
37
|
```javascript
|
|
38
38
|
import Vue from 'vue';
|
|
39
39
|
import VueTelInput from 'vue-tel-input';
|
|
40
|
-
import 'vue-tel-input/
|
|
40
|
+
import 'vue-tel-input/vue-tel-input.css';
|
|
41
41
|
|
|
42
42
|
const app = createApp(App);
|
|
43
43
|
app.use(VueTelInput);
|
|
@@ -68,7 +68,7 @@ Install the plugin into Vue:
|
|
|
68
68
|
import { createApp } from 'vue';
|
|
69
69
|
import App from './App.vue';
|
|
70
70
|
import VueTelInput from 'vue-tel-input';
|
|
71
|
-
import 'vue-tel-input/
|
|
71
|
+
import 'vue-tel-input/vue-tel-input.css';
|
|
72
72
|
|
|
73
73
|
const globalOptions = {
|
|
74
74
|
mode: 'auto',
|
|
@@ -91,7 +91,7 @@ Or use the component directly:
|
|
|
91
91
|
<script>
|
|
92
92
|
import { ref } from 'vue';
|
|
93
93
|
import { VueTelInput } from 'vue-tel-input';
|
|
94
|
-
import 'vue-tel-input/
|
|
94
|
+
import 'vue-tel-input/vue-tel-input.css';
|
|
95
95
|
|
|
96
96
|
export default {
|
|
97
97
|
components: {
|
|
@@ -137,7 +137,7 @@ Since the library is about 200kb of JavaScript and 100kb of CSS in order to impr
|
|
|
137
137
|
const VueTelInput = () =>
|
|
138
138
|
Promise.all([
|
|
139
139
|
import(/* webpackChunkName: "chunk-vue-tel-input" */ 'vue-tel-input'),
|
|
140
|
-
import(/* webpackChunkName: "chunk-vue-tel-input" */ 'vue-tel-input/
|
|
140
|
+
import(/* webpackChunkName: "chunk-vue-tel-input" */ 'vue-tel-input/vue-tel-input.css'),
|
|
141
141
|
]).then(([{ VueTelInput }]) => VueTelInput);
|
|
142
142
|
|
|
143
143
|
export default {
|