Vue.jsのコンポーネントのimport文をdynamic importに変換するCLIコマンドを作りました
Vue.jsのコンポーネントのimportをdynamic importに変換するCLIコマンドを作りました。
その名も「dynamic-import-converter」
特定のディレクトリ配下のvueファイルを全てdynamic importに変換します。
ソースはこちらで公開しています。
https://github.com/harhogefoo/dynamic-import-converter
通常のcomponentのimport文
<template>
<div>
<hoge />
<piyo />
</div>
</template>
<script>
import Hoge from "@/components/Hoge.vue"
import Piyo from "@/components/Piyo.vue"
export default {
components: {
Hoge,
Piyo
}
}
</script>
dynamic_importに変換
<template>
<div>
<hoge />
<piyo />
</div>
</template>
<script>
export default {
components: {
Hoge: () => import("@/components/Hoge.vue"),
Piyo: () => import("@/components/Piyo.vue")
}
}
</script>
使い方
$ yarn global add dynamic-import-converter
or
$ npm install -g dynamic-import-converter
$ dynamic-import-converter ./Vueファイルが格納されたディレクトリのパス/
$ yarn global add dynamic-import-converter
or
$ npm install -g dynamic-import-converter
$ dynamic-import-converter ./Vueファイルが格納されたディレクトリのパス/
バグ、改善要望などは、リポジトリのissueまで!
https://github.com/harhogefoo/dynamic-import-converter/issues
Author And Source
この問題について(Vue.jsのコンポーネントのimport文をdynamic importに変換するCLIコマンドを作りました), 我々は、より多くの情報をここで見つけました https://qiita.com/harhogefoo/items/8323eebcbdb36e3ba09a著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .