Ant Design Vue — Autocomplete

John Au-Yeung
3 min readJan 12, 2021
Photo by Campbell Boulanger 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.

Autocomplete Input

We can add an autocomplete input withn the a-auto-complete component:

<template>
<a-auto-complete
v-model="value"
:data-source="dataSource"
style="width: 200px"…

--

--