我是靠谱客的博主 谨慎时光,最近开发中收集的这篇文章主要介绍Vue2+VueRouter2+webpack+Axios 使用element-ui,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Vue2+VueRouter2+webpack+Axios 构建项目实战目录以及文件结构

Element-ui,一套为开发者、设计师和产品经理准备的基于 Vue 2.0 的桌面端组件库

官网 http://element-cn.eleme.io/#/zh-CN/component/installation

切换到项目根目录,运行npm安装
 

npm i element-ui -D

vue中使用

修改路由 src/router/index.js 的代码

import Vue from 'vue'
import Router from 'vue-router'
import ElementUI from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css'
import HelloWorld from '@/components/HelloWorld'
import Element from '@/components/Element'

Vue.use(Router)
Vue.use(ElementUI)

export default new Router({
  routes: [
    {
      path: '/',
      name: 'HelloWorld',
      component: HelloWorld
    },
    {
      path: '/element',
      component: Element
    }
  ]
})

添加视图组件 src/components/Element.vue
 

<template>
  <div>
    <el-button @click="visible = true">Button</el-button>
    <el-dialog :visible.sync="visible" title="Hello world" >
      <p>Try Element</p>
    </el-dialog>
  </div>
</template>
<script>
export default {
  data () {
    return { visible: false }
  }
}
</script>

运行 npm run dev 命令开启服务器

浏览器上输入: http://localhost:8081/#/element  ,效果如下

最后

以上就是谨慎时光为你收集整理的Vue2+VueRouter2+webpack+Axios 使用element-ui的全部内容,希望文章能够帮你解决Vue2+VueRouter2+webpack+Axios 使用element-ui所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(45)

评论列表共有 0 条评论

立即
投稿
返回
顶部