This time I will show you how to build the vue2-webpack2 framework. What are the precautions for building the vue2-webpack2 framework. The following is a practical case, let’s take a look.
react, vue, and angular represent three front-end engineering ideas. Learning the three major frameworks is mainly to understand their core concepts, such as components, life cycle, and one-way Data flow, two-way binding, etc. In non-framework development, few people think about these concepts in such a systematic way. For novices, they have never been exposed to many concepts and don’t know where to start a react, vue or angular project. Below I will start with Build a Vue project from scratch and learn the ideas of Vue while working on the project.
1. If I want to use vue, what should I do first?
If I want to learn vue, the first thing I do is go to the vue official website to read the introduction: https://cn.vuejs.org/v2/guide... , take a closer look, vue now has 1.X The difference from 2.X is very good. I decisively choose 2.X.
After selecting the vue version, I searched Zhihu for how to build the vue framework. After reading various sharings from seniors, I learned about a good thing called cooking. What’s so good about it?
The goal of cooking is to free you from tedious build configurations and the hassle of installing a bunch of development dependencies for each project. Based on webapck but with more friendly configuration items and easy-to-use extended configuration mechanism, you can focus on the project and forget about configuration.
Wow, I saw that the official website of cooking provided such a good introduction, so I decisively followed its tutorial. After messing around for a while, I found that it was not comfortable to use. The one-click configuration environment seemed very high-end, but I still had to learn how to use cooking. , and I had to install cookies locally, which made me dizzy. Although I successfully accessed the web page in the browser, I still gave up on this good thing.
At this time, you can only build the project from scratch.
2. Create a new vue2-web project in github.
Open the github homepage and click start a project.
Then you will see Create a new repository, which requires you to fill in the project information. This step is skipped.
Then the project is built and cloned locally.
3. Initialize npm
Use shell or cmd to enter the project root directory, execute the following command, directly skip the options, and finally the package.json file will be generated.
npm init
4. Install webpack
It feels like you can't live without webpack, but configuring webpack will also make you unable to live. It's too difficult to remember the configuration items of webpack, but don't worry, I have helped you get this step done. We all must use webpack2.
npm install --save-dev webpack
A front-end server is also needed for hot updates, and webpack-dev-server appears.
npm install --save-dev webpack-dev-server
5. Create webpack.config.js file
It is no different from the webpackconfiguration file in react. It can be transplanted and used with just a slight change.
Never put js and vue together. If it doesn't work, they must be separated. I have to step on this pit. I wasted several hours looking for this pit in the most hidden place.
rules: [{ test: /\.js$/, use: ['babel-loader'], exclude: /node_modules/, include: resolve('src') },{ test: /\.vue$/, use: ['vue-loader'], exclude: /node_modules/, include: resolve('src') },
6. Create a .babelrc file.
Babel is indispensable. Note that react is not used here, but vue, including the following plug-ins, flow-vue and transform-vue-jsx.
{ "presets": ["es2015", "flow-vue", "stage-0", "stage-2"], "plugins": ["transform-vue-jsx"], "comments": false, "env": { "production": { "plugins": [ ["transform-runtime", { "polyfill": false, "regenerator": false }] ] } } }
7. Add the start command in package.json
Directly use webpack-dev-server to start, wow, a bunch of errors, saying which module is missing, this is simple, because a bunch of modules referenced in the configuration file have not been installed in the project, so just install them one by one at this time.
"start": "webpack-dev-server",
8. Project entry main.js file.
这个文件名自己喜欢咋取就咋取,代码挺简单的,实例化一个Vue和路由,是不是和react的入口文件很像?当然,我做的是SPA,所以采用单入口的形式,如果是非SPA模式,就不是这种配置方式了。
import Vue from 'vue'; import App from './App.vue'; import VueRouter from 'vue-router'; import routes from './routes'; import VueResource from 'vue-resource'; Vue.use(VueResource); //http请求注册 Vue.use(VueRouter); //路由注册 // 实例化路由 const router = new VueRouter({ // mode: 'history', //H5 路由模式,需要服务端做渲染防止404错误 base: dirname, linkActiveClass: 'on', routes }) let render = new Vue({ router, el: '#app', render: h => h(App) }); render; // if (module.hot) { // 非必须 // module.hot.accept('./App.vue', () => render); // }
9、路由routes.js
路由和react也非常像(简直一样好不),这里的vue页面采用.vue后缀的方式来写。
import Home from './components/home/Home.vue'; import Bang from './components/bang/Bang.vue'; export default [ { path: '/', redirect: 'home' }, { path: '/home', component: Home }, { path: '/bang', component: Bang } ]
10、单页顶层容器App.vue
从index进来,就是这个文件,现在开始学习vue的精华。
template:vue的模板语言,也叫作jsx。
transition:过渡动画。
router-view:路由显示容器,通过router-link跳转加载的.vue会在这个容器渲染。router-link被我封装到nav.vue组件里面了。
script:导入了当前顶级容器需要用到的vue组件,包括头部、导航、首页。还有更多丰富的设置我没有研究,后续的学习中会深入下去。
style: 当前组件的样式,我配置了less语法支持。将style改成
<template> <p> <app-header></app-header> <app-nav></app-nav> <transition> <router-view></router-view> </transition> </p> </template> <script> import Header from './components/common/Header.vue'; import Nav from './components/common/Nav.vue'; import Home from './components/home/Home.vue'; export default { name: 'App', components: { "app-header": Header, "app-nav": Nav, "app-home": Home } }; </script> <style> body, html { font-size: 12px; margin: 0; padding: 0; } </style>
相信看了本文案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!
推荐阅读:
The above is the detailed content of How to build the vue2-webpack2 framework. For more information, please follow other related articles on the PHP Chinese website!

译者 | 李睿审校 | 孙淑娟Web Speech API是一种Web技术,允许用户将语音数据合并到应用程序中。它可以通过浏览器将语音转换为文本,反之亦然。Web Speech API于2012年由W3C社区引入。而在十年之后,这个API仍在开发中,这是因为浏览器兼容性有限。该API既支持短时输入片段,例如一个口头命令,也支持长时连续的输入。广泛的听写能力使它非常适合与Applause应用程序集成,而简短的输入很适合语言翻译。语音识别对可访问性产生了巨大的影响。残疾用户可以使用语音更轻松地浏览

web端指的是电脑端的网页版。在网页设计中我们称web为网页,它表现为三种形式,分别是超文本(hypertext)、超媒体(hypermedia)和超文本传输协议(HTTP)。

docker部署javaweb系统1.在root目录下创建一个路径test/appmkdirtest&&cdtest&&mkdirapp&&cdapp2.将apache-tomcat-7.0.29.tar.gz及jdk-7u25-linux-x64.tar.gz拷贝到app目录下3.解压两个tar.gz文件tar-zxvfapache-tomcat-7.0.29.tar.gztar-zxvfjdk-7u25-linux-x64.tar.gz4.对解

区别:1、前端指的是用户可见的界面,后端是指用户看不见的东西,考虑的是底层业务逻辑的实现,平台的稳定性与性能等。2、前端开发用到的技术包括html5、css3、js、jquery、Bootstrap、Node.js、Vue等;而后端开发用到的是java、php、Http协议等服务器技术。3、从应用范围来看,前端开发不仅被常人所知,且应用场景也要比后端广泛的太多太多。

web前端打包工具有:1、Webpack,是一个模块化管理工具和打包工具可以将不同模块的文件打包整合在一起,并且保证它们之间的引用正确,执行有序;2、Grunt,一个前端打包构建工具;3、Gulp,用代码方式来写打包脚本;4、Rollup,ES6模块化打包工具;5、Parcel,一款速度极快、零配置的web应用程序打包器;6、equireJS,是一个JS文件和模块加载器。

怎么解决高并发大流量问题?下面本篇文章就来给大家分享下高并发大流量web解决思路及方案,希望对大家有所帮助!

和它本身的轻便一样,Bottle库的使用也十分简单。相信在看到本文前,读者对python也已经有了简单的了解。那么究竟何种神秘的操作,才能用百行代码完成一个服务器的功能?让我们拭目以待。1. Bottle库安装1)使用pip安装2)下载Bottle文件https://github.com/bottlepy/bottle/blob/master/bottle.py2.“HelloWorld!”所谓万事功成先HelloWorld,从这个简单的示例中,了解Bottle的基本机制。先上代码:首先我们从b

web有前端,也有后端。web前端也被称为“客户端”,是关于用户可以看到和体验的网站的视觉方面,即用户所看到的一切Web浏览器展示的内容,涉及用户可以看到,触摸和体验的一切。web后端也称为“服务器端”,是用户在浏览器中无法查看和交互的所有内容,web后端负责存储和组织数据,并确保web前端的所有内容都能正常工作。web后端与前端通信,发送和接收信息以显示为网页。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Notepad++7.3.1
Easy-to-use and free code editor

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Mac version
God-level code editing software (SublimeText3)
