From 3207aabacd63a72756cb1a91da819469a947bec6 Mon Sep 17 00:00:00 2001 From: John Leider Date: Sun, 3 Nov 2019 17:33:40 -0600 Subject: [PATCH] fix: properly load opts --- generator/templates/default/src/App.js.vue | 14 +++++++------- generator/templates/default/src/App.ts.vue | 14 +++++++------- .../templates/default/src/plugins/vuetify.js | 16 ++++++++-------- generator/tools/vuetify.js | 2 +- 4 files changed, 23 insertions(+), 23 deletions(-) diff --git a/generator/templates/default/src/App.js.vue b/generator/templates/default/src/App.js.vue index 3012408c..865e2f8f 100644 --- a/generator/templates/default/src/App.js.vue +++ b/generator/templates/default/src/App.js.vue @@ -33,20 +33,20 @@ text > Latest Release - <%_ if (opts.iconFont === 'mdi') { _%> + <%_ if (iconFont === 'mdi') { _%> mdi-open-in-new - <%_ } else if (opts.iconFont === 'md') { _%> + <%_ } else if (iconFont === 'md') { _%> open_in_new - <%_ } else if (opts.iconFont === 'fa') { _%> + <%_ } else if (iconFont === 'fa') { _%> fas fa-external-link-alt - <%_ } else if (opts.iconFont === 'fa4') { _%> + <%_ } else if (iconFont === 'fa4') { _%> fa-external-link <%_ } _%> - <%_ if (opts.router) { _%> + <%_ if (router) { _%> <%_ } else { _%> @@ -56,14 +56,14 @@