vue-cli2 单个组件打包为jsvue-cli2和vue-cli3参考这篇文章 还有这篇文章 vue-cli3有更多的默认配置支持更多场景,支持直接把组件打包成js的脚本,不用配置vue-cli2vue-cli2开发小组件建议直接使用vue init simp...
vue-cli2 单个组件打包为js
vue-cli2和vue-cli3
参考这篇文章
还有这篇文章
vue-cli3有更多的默认配置支持更多场景,支持直接把组件打包成js的脚本,不用配置
vue-cli2
vue-cli2开发小组件建议直接使用vue init simpleproject xxx 创建项目,默认没有导入route。或者把生成的vue.config.js复制一份到vue普通项目中,后新建脚本使用这个配置。
vue.config.js
var path = require('path')
var webpack = require('webpack')
module.exports = {
entry: '改成组件的js',
output: {
path: path.resolve(__dirname, './lib'),//所有输出文件的目标路径;打包后文件在硬盘中的存储位置。
publicPath: '/lib/',//index.html 可访问资源
filename: 'autobg.js',
library: 'autobg',
libraryTarget: 'umd',
umdNamedDefine: true
},
module: {
rules: [
{
test: /\.css$/,
use: [
'vue-style-loader',
'css-loader'
],
},
{
test: /\.scss$/,
use: [
'vue-style-loader',
'css-loader',
'sass-loader'
],
},
{
test: /\.sass$/,
use: [
'vue-style-loader',
'css-loader',
'sass-loader?indentedSyntax'
],
},
{
test: /\.vue$/,
loader: 'vue-loader',
options: {
loaders: {
// Since sass-loader (weirdly) has SCSS as its default parse mode, we map
// the "scss" and "sass" values for the lang attribute to the right configs here.
// other preprocessors should work out of the box, no loader config like this necessary.
'scss': [
'vue-style-loader',
'css-loader',
'sass-loader'
],
'sass': [
'vue-style-loader',
'css-loader',
'sass-loader?indentedSyntax'
]
}
// other vue-loader options go here
}
},
{
test: /\.js$/,
loader: 'babel-loader',
exclude: /node_modules/
},
{
test: /\.(png|jpg|gif|svg)$/,
loader: 'file-loader',
options: {
name: '[name].[ext]?[hash]'
}
}
]
},
resolve: {
alias: {
'vue$': 'vue/lib/vue.esm.js'
},
extensions: ['*', '.js', '.vue', '.json']
},
devServer: {
historyApiFallback: true,
noInfo: true,
overlay: true
},
performance: {
hints: false
},
devtool: '#eval-source-map'
}
module.exports.devtool = '#source-map'
// http://vue-loader.vuejs.org/en/workflow/production.html
module.exports.plugins = (module.exports.plugins || []).concat([
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: '"production"'
}
}),
new webpack.optimize.UglifyJsPlugin({
sourceMap: true,
compress: {
warnings: false
}
}),
new webpack.LoaderOptionsPlugin({
minimize: true
})
])
package.json
"scripts": {
"dev": "webpack-dev-server --open --hot",
"build": "webpack --progress --hide-modules"
}
添加route依赖命令
npm install route --save
组件的index.js注意事项
在vue-cli项目中使用组件和html引用js使用组件需要
import Vue from 'vue'
import Axios from 'axios'
import xxx from 'xxx'
import newComponent from 'xxx'
init(Vue);//让该项目可在npm run dev 中运行
function init(Vue){
if(Vue){
Vue.prototype.$axios = Axios
Vue.use(xxx)
Vue.component(newComponent.name, newComponent)
}
}
if (typeof window !== 'undefined' && window.Vue) {//在html中引入js使用该组件
init(window.Vue);
}
AutoBGManagement.install = function (vue) {//vue-cli中使用该组件
init(vue);
}
export default newComponent
沃梦达教程
本文标题为:vue-cli2 单个组件打包为js
基础教程推荐
猜你喜欢
- 使用ajax跨域调用springboot框架的api传输文件 2023-02-23
- 关于Ajax跨域问题及解决方案详析 2023-02-23
- 在实战中可能碰到的几种ajax请求方法详解 2023-02-01
- Ajax+smarty技术实现无刷新分页 2022-12-15
- uniapp开发微信小程序自定义顶部导航栏功能实例 2022-10-21
- cocos creator游戏实现loading加载页面,游戏启动加载动画 2022-10-29
- JS滚动到顶部踩坑解决记录 2023-07-10
- HTML clearfix清除浮动讲解 2022-11-20
- Ajax发送和接收请求 2022-12-15
- Javascript Bootstrap的网格系统,导航栏和轮播详解 2023-08-11