单文件启动
所谓单文件启动是将.vue结尾的文件通过webpack编译成.js文件
依赖如下包
vue vue-loader vue-template-complier
.vue文件结构如下
<template></template> + <script></script> + <style></style>
- template中只能有一个根节点
- script按照export default {配置}来写
- style中可以设置scoped属性,让其只在template中生效
结构
根目录下增加package.json配置文件
{
"name": "vueDemo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"autoprefixer-loader": "^3.2.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"css-loader": "^1.0.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"less": "^3.8.0",
"less-loader": "^4.1.0",
"style-loader": "^0.21.0",
"url-loader": "^1.0.1",
"webpack": "^4.16.3",
"webpack-dev-server": "^3.1.5"
}
}
使用npm install
安装上面的包
根目录下增加webpack.config.js
const path = require('path')
const htmlWebpackPlugin = require('html-webpack-plugin')
const VueLoaderPlugin = require('vue-loader/lib/plugin')
module.exports = {
entry: {
main: './src/main.js'
},
output: {
filename: './build.js',
path: path.join(__dirname, 'dist')
},
module: {
rules: [
{
test:/\.(jpg|scg|png|gif)$/,
loader:'url-loader?limit=4096&name=[name].[ext]',
// options:{
// limit:4096,
// name:'[name].[ext]'
// }
},{
test:/\.js$/,
loader:'babel-loader',
exclude:/node_modules/,
options:{
presets:['es2015'],
plugins:['transform-runtime']
}
},{
test:/\.vue$/,
loader:'vue-loader'
},{test: /\.css$/,use: ["vue-style-loader", "css-loader"] }
]
},
plugins:[
new htmlWebpackPlugin({
template:'./src/index.html'
}),
new VueLoaderPlugin()
]
}
安装vue相关的包
npm install vue --save-dev
npm install vue-loader vue-template-compiler -D
Html文件
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>vue入门</title>
</head>
<body>
<!-- 留下vue渲染的位置 -->
<div id="app"></div>
</body>
</html>
编写主入口的js文件
// 引入vue
import Vue from 'vue';
import App from './app.vue'
new Vue({
// 渲染位置
el:'#app',
// 渲染内容
render:function(creater){
return creater(App)
}
})
编写vue文件
<template>
<!-- 只能有一个根节点 -->
<div>
Hello VueJs!
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>
打包
生产环境打包:webpack --mode production
开发环境调试:webpack-dev-server的路径要根据自己放置的位置查找
..\\node_modules\\.bin\\webpack-dev-server --inline --hot --open
启动
打包完成后会在根目录下的dist目下生成相应的文件,点击index.html文件进行浏览,可以看到如下效果:
image.png
大功告成了!
参考链接
免责声明
以上内容若侵犯了您的版权,请联系我,我会立即删除。
以上内容有不对的地方敬请指正!
网友评论