vue:vue引入组建的多种写法
Posted llqwm
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue:vue引入组建的多种写法相关的知识,希望对你有一定的参考价值。
vue的路由组件中,引入模块的两种写法:(@等价于..)
死的写法:不是按需加载
1:import Index from ‘@/components/Index‘(import Index from ‘../components/Index‘)
活的写法:按需加载
2:const disconnect = (resolve) => {
import(‘pages/disconnect/disconnect‘).then(template => {
resolve(template)
})
}
以上是关于vue:vue引入组建的多种写法的主要内容,如果未能解决你的问题,请参考以下文章
vue通过组件,按需引入echarts 柱状图 (全网最简单写法)