Home  >  Article  >  Web Front-end  >  Sharing examples of environment construction for vue.js, element-ui, and vuex

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

小云云
小云云Original
2018-03-07 13:19:353909browse

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 

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

2. Initialize dependency packages

npm install

3. Run debugging

npm run dev

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

5. Import vue-router package

npm install --save vue-router

6. Import axios Package

npminstall --save axios

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

npm install sass-loader -Dnpm install node-sass -D


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)

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

New login vue file: Ulogin.vue

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
    }
  ]
})

App.vue

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!

Statement:
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