vue使用elementUi前端基础搭建

本文介绍如何使用Vue和ElementUI库来快速搭建前端项目。主要步骤包括在main.js中引入Vue、ElementUI及样式文件,配置路由,并在App.vue设置基本模板。登录页面使用了ElementUI的输入框组件,简化了页面构建。
摘要由CSDN通过智能技术生成

前端VUE项目使用elementUi基础搭建

方便后续搭建前端项目快速搭建

main.js文件

import Vue from 'vue'
import App from './App'
import ElementUI from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css'
import router from './router'

Vue.use(router)
Vue.config.productionTip = false
Vue.use(ElementUI)
/* eslint-disable no-new */
new Vue({
  el: '#app',
  components: { App },
  router,
  template: '<App/>',
  render: h => h(App)
})

App.vue

<template>
  <div id="app">
    <router-view></router-view>
  </div>
</template>

<script>

export default {
  name: 'App'
}
</script>
<style>
#app {
  font-family: 'Avenir', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
}
</style>

router的index

import Vue from 'vue'
import Router from 'vue-router'
import Login from '../views/login'

Vue.use(Router)

export default new Router({
  routes: [
    {
      path: '/login',
      component: Login
    }
  ]
})

登录页面login

<template>
  <el-input type="text"></el-input>
</template>

<script>
export default {
  name: 'login'
}
</script>

<style scoped>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值