UNPKG
@ntohq/buefy-next
Version:
latest (0.2.0)
0.2.0
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
Lightweight UI components for Vue.js (v3) based on Bulma
buefy.org
ntohq/buefy-next
@ntohq/buefy-next
/
src
/
components
/
taginput
/
index.ts
17 lines
(12 loc)
•
278 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import
type
{
App
}
from
'vue'
import
Taginput
from
'./Taginput.vue'
import
{ registerComponent }
from
'../../utils/plugins'
const
Plugin
= {
install
(
Vue
:
App
) {
registerComponent
(
Vue
,
Taginput
) } }
export
default
Plugin
export
{
Taginput
as
BTaginput
}