Vue admin template 学习笔记

 

 

 

VUE Cli3 组件注册

跑马灯效果

全局注册组件

  1. 在main.js 中import 和 use
  2. 在index.vue中用标签直接引用

Vue admin template 学习笔记_第1张图片

Vue admin template 学习笔记_第2张图片 

代码:

main.js

import Vue from 'vue'

import 'normalize.css/normalize.css' // A modern alternative to CSS resets

import ElementUI from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css'
import locale from 'element-ui/lib/locale/lang/en' // lang i18n

import '@/styles/index.scss' // global css

import App from './App'
import store from './store'
import router from './router'
import '@/icons' // icon
import '@/permission' // permission control
import { Carousel, CarouselItem } from 'element-ui'

Vue.use(Carousel)
Vue.use(CarouselItem)
/**
 * If you don't want to use mock-server
 * you want to use MockJs for mock api
 * you can execute: mockXHR()
 *
 * Currently MockJs will be used in the production environment,
 * please remove it before going online! ! !
 */
import {
  mockXHR
} from '../mock'
if (process.env.NODE_ENV === 'production') {
  mockXHR()
}

// set ElementUI lang to EN
Vue.use(ElementUI, {
  locale
})

Vue.config.productionTip = false

new Vue({
  el: '#app',
  router,
  store,
  render: h => h(App)
})

index.vue






 

局部注册组件

  1. 在要添加的页面中 先导入跑马灯需要的组件,
  2. 在components中引用
  3. 写标签

Vue admin template 学习笔记_第3张图片

Vue admin template 学习笔记_第4张图片

代码:






vue-admin-template 中mock的使用

  • 创建/src/api.card.js
  • 创建/mock/cardmock.js
  • 在/mock/index.js中引入cardmock.js

index.js

Vue admin template 学习笔记_第5张图片

其他三个文件的关系

Vue admin template 学习笔记_第6张图片

 

你可能感兴趣的:(VUE)