Ant Design Vue — Layouts

John Au-Yeung
3 min readJan 11, 2021
Photo by Charlie Deets on Unsplash

Ant Design Vue or AntD Vue, is a useful UI framework made for Vue.js.

In this article, we’ll look at how to use it in our Vue apps.

Header and Side Bar

We can add a header and sidebar together. For example, we can write:

<template>
<div id="app">
<a-layout id="components-layout-demo-top-side-2">
<a-layout-header…

--

--