Vue 和 iView 一起使用可以方便快捷地完成布局設計。下面將介紹基于 iView 的 Vue 布局方法。
首先在 Vue 中安裝 iView
npm install iview --save
然后,在 main.js 文件中引用 iView,并導入需要的組件,比如 Button、Input、Layout 等等。
import Vue from 'vue' import iView from 'iview' import 'iview/dist/styles/iview.css' Vue.use(iView) import { Button, Input, Layout } from 'iview' Vue.component('Button', Button) Vue.component('Input', Input) Vue.component('Layout', Layout)
接著,在 App.vue 中使用 Layout 組件進行整體布局設計。
logo main content
布局分為三個部分:Header、Content 和 Footer。在 Layout 中包含這三個部分,然后設置 Header 的內容為 logo,Content 的內容為主要內容,Footer 的內容為頁腳信息。
然后,可以使用 iView 的 Grid 組件在 Content 中進行柵格布局。
logo |
left menu main content
在這里,使用 Col 組件進行柵格布局,設置左側菜單區域的占比為 6,主要內容區的占比為 18。
以上是基于 iView 的 Vue 布局方法的簡單介紹。通過這些布局技巧,可以方便快捷地完成頁面設計。
上一篇python+圖形+模塊
下一篇gulp json 壓縮