Skip to content

Commit 9aba479

Browse files
committed
(feature) Improve nuxt compatibilty
1 parent 64b8b44 commit 9aba479

File tree

6 files changed

+2749
-41
lines changed

6 files changed

+2749
-41
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
.DS_Store
22
node_modules
33
/dist
4+
.nuxt
45

56
# local env files
67
.env.local

nuxt/index.js

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
const { resolve } = require('path')
2+
3+
module.exports = function VuePhoneNumberInput () {
4+
this.addPlugin({
5+
ssr: false,
6+
src: resolve(__dirname, 'plugin.js'),
7+
fileName: 'vue-phone-number-input.js'
8+
})
9+
}
10+
11+
module.exports.meta = require(__dirname, './../package.json')

nuxt/plugin.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import Vue from 'vue'
2+
import VuePhoneNumberInput from 'vue-phone-number-input'
3+
import 'vue-phone-number-input/dist/vue-phone-number-input.css'
4+
5+
Vue.component('VuePhoneNumberInput', VuePhoneNumberInput)

0 commit comments

Comments
 (0)