2 changed files with
6 additions and
6 deletions
|
|
|
@ -1,6 +1,6 @@
|
|
|
|
export default {
|
|
|
|
export default {
|
|
|
|
html: `
|
|
|
|
html: `
|
|
|
|
<p>#FF0000</p>
|
|
|
|
<p>#FF0000</p>
|
|
|
|
<p>#00FF00</p>
|
|
|
|
<p>#00FF00</p>
|
|
|
|
<p>#0000FF</p>
|
|
|
|
<p>#0000FF</p>
|
|
|
|
`,
|
|
|
|
`,
|
|
|
|
|
|
|
|
@ -2,17 +2,17 @@
|
|
|
|
export let tags = [
|
|
|
|
export let tags = [
|
|
|
|
{
|
|
|
|
{
|
|
|
|
name: 'Red',
|
|
|
|
name: 'Red',
|
|
|
|
color: '#FF0000',
|
|
|
|
color: '#FF0000'
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{
|
|
|
|
name: 'Green',
|
|
|
|
name: 'Green',
|
|
|
|
color: '#00FF00',
|
|
|
|
color: '#00FF00'
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{
|
|
|
|
name: 'Blue',
|
|
|
|
name: 'Blue',
|
|
|
|
color: '#0000FF',
|
|
|
|
color: '#0000FF'
|
|
|
|
},
|
|
|
|
}
|
|
|
|
]
|
|
|
|
];
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
{#each tags as tag}
|
|
|
|
{#each tags as tag}
|
|
|
|
|