UNPKG
meemo-app
Version:
latest (1.13.1)
1.13.1
1.9.2
1.6.4
1.6.2
1.5.1
1.3.0
A personal ideas, notes or links manager
github.com/nebulade/meemo
nebulade/meemo
meemo-app
/
frontend
/
templates
/
tag-sidebar.js
27 lines
(22 loc)
•
394 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
'use strict'
;
/* global Vue */
Vue
.
component
(
'tag-sidebar'
, {
template
:
'#tag-sidebar-template'
,
data
:
function
(
) {
return
{}; },
props
: {
tags
: {
type
:
Array
,
required
:
true
},
settings
: {
type
:
Object
,
required
:
true
} },
methods
: { },
ready
:
function
(
) { } });