-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Добавлен возможность подключения плагина в nuxt module
- Loading branch information
Антон Пинегин
committed
Jan 14, 2019
1 parent
37429f4
commit 34409bc
Showing
3 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
const {resolve} = require('path'); | ||
|
||
module.exports = function nuxtVueYandexMaps(options) { | ||
this.addPlugin({ | ||
src: resolve(__dirname, 'plugin.js'), | ||
fileName: 'vue-yandex-maps.js', | ||
options, | ||
ssr: false | ||
}) | ||
}; | ||
|
||
module.exports.meta = require('../package.json'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import Vue from 'vue'; | ||
import YmapPlugin from 'vue-yandex-maps'; | ||
|
||
Vue.use(YmapPlugin, <%= serialize(options) %>); |