Home > Web Front-end > JS Tutorial > body text

Sharing examples of environment construction for vue.js, element-ui, and vuex

小云云
Release: 2018-03-07 13:19:35
Original
3910 people have browsed it

This article mainly shares with you vue.js, element-ui, and vuex environment construction examples. This article mainly shares graphic examples and code, hoping to help everyone.

1. Initialize the project

vue init webpack 
Copy after login

Sharing examples of environment construction for vue.js, element-ui, and vuex

2. Initialize dependency packages

npm install
Copy after login

3. Run debugging

npm run dev
Copy after login

Address Enter localhost:8080

Sharing examples of environment construction for vue.js, element-ui, and vuex

##4. Import elementUI package

npm install --save vue element-ui
Copy after login

5. Import vue-router package

npm install --save vue-router
Copy after login

6. Import axios Package

npminstall --save axios
Copy after login

7. Install sass-loader and node-sass plug-in

npm install sass-loader -Dnpm install node-sass -D
Copy after login


Project directory


Sharing examples of environment construction for vue.js, element-ui, and vuex

8. Modify debugging

Introduce vue element and router into main.js:

import ElementUI from 'element-ui'import 'element-ui/lib/theme-chalk/index.css';import VueRouter from 'vue-router'Vue.use(ElementUI)
Vue.use(VueRouter)
Copy after login

Sharing examples of environment construction for vue.js, element-ui, and vuex

New login vue file: Ulogin.vue

Copy after login

index.js file in router Configure routing:

import Ulogin from '../components/Ulogin'Vue.use(Router)

export default new Router({
  routes: [    // {
    //   path: '/',
    //   name: 'HelloWorld',
    //   component: HelloWorld
    // },
    {
      path:'/',
      name:'',
      component:Ulogin
    }
  ]
})
Copy after login

App.vue

Copy after login
Directory structure:

Sharing examples of environment construction for vue.js, element-ui, and vuex

Run: npm run dev


Sharing examples of environment construction for vue.js, element-ui, and vuex
Sharing examples of environment construction for vue.js, element-ui, and vuex
Sharing examples of environment construction for vue.js, element-ui, and vuex

Related recommendations:

Detailed tutorial on how to build a vue, node, and webpack environment

Detailed examples of simple tutorials on building a vue environment

Recommendations for the 6 best PHP environment building tools in 2017

The above is the detailed content of Sharing examples of environment construction for vue.js, element-ui, and vuex. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!