Skip to content

Commit

Permalink
Move glyphs and colors out of Vue data
Browse files Browse the repository at this point in the history
  • Loading branch information
electrikmilk committed May 27, 2024
1 parent 26d27dd commit 2467f4d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,9 @@ export default {
f7Button,
f7PageContent,
},
setup() {
return {colors, glyphs};
},
data() {
return {
blue: null,
Expand All @@ -186,9 +189,7 @@ export default {
theme: 'ios',
darkMode: 'auto',
},
glyphs: glyphs,
glyph: {identifier: 'identifier', code: null},
colors: colors,
color: {identifier: null, code: null},
compilers: {
'Cherri': {
Expand Down

0 comments on commit 2467f4d

Please sign in to comment.