Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wdiechmann/ccfa6d70cfd1a39da372ac52e4e28fd6 to your computer and use it in GitHub Desktop.
Save wdiechmann/ccfa6d70cfd1a39da372ac52e4e28fd6 to your computer and use it in GitHub Desktop.
icons missing - and how to fix it
Please see my 'environment' and how to reproduce below!
Trying to use the Google Keep Layout leaves me with the 'icons' spelled as text
If, however, I substitute the
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900">
with this
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900%7CRoboto+Mono:500%7CMaterial+Icons"
media="all"
/>
then all is well in Vuetify-land :)
Hope to help other noobs :)
/W
$ vue info
Environment Info:
System:
OS: macOS Mojave 10.14.6
CPU: (8) x64 Intel(R) Core(TM) i7-8559U CPU @ 2.70GHz
Binaries:
Node: 12.10.0 - ~/.asdf/installs/nodejs/12.10.0/bin/node
Yarn: 1.22.4 - /usr/local/bin/yarn
npm: 6.10.3 - ~/.asdf/installs/nodejs/12.10.0/bin/npm
Browsers:
Chrome: 81.0.4044.138
Firefox: 76.0.1
Safari: 13.1
npmGlobalPackages:
@vue/cli: Not Found
$ vue -V
@vue/cli 4.2.3
You have new mail in /var/mail/walther
$ vue create my-app
Vue CLI v4.2.3
┌─────────────────────────────────────────────┐
│ │
│ New version available 4.2.3 → 4.3.1 │
│ Run yarn global add @vue/cli to update! │
│ │
└─────────────────────────────────────────────┘
? Please pick a preset: default (babel, eslint)
Vue CLI v4.2.3
✨ Creating project in /Users/walther/tmp/my-app.
🗃 Initializing git repository...
⚙️ Installing CLI plugins. This might take a while...
yarn install v1.22.4
info No lockfile found.
[1/4] 🔍 Resolving packages...
success Saved lockfile.
✨ Done in 18.44s.
🚀 Invoking generators...
📦 Installing additional dependencies...
yarn install v1.22.4
[1/4] 🔍 Resolving packages...
[2/4] 🚚 Fetching packages...
[3/4] 🔗 Linking dependencies...
[4/4] 🔨 Building fresh packages...
success Saved lockfile.
✨ Done in 3.65s.
⚓ Running completion hooks...
📄 Generating README.md...
🎉 Successfully created project my-app.
👉 Get started with the following commands:
$ cd my-app
$ yarn serve
$ cd my-app
$ vue add vuetify
📦 Installing vue-cli-plugin-vuetify...
yarn add v1.22.4
[1/4] 🔍 Resolving packages...
[2/4] 🚚 Fetching packages...
[3/4] 🔗 Linking dependencies...
[4/4] 🔨 Building fresh packages...
success Saved lockfile.
success Saved 4 new dependencies.
info Direct dependencies
└─ vue-cli-plugin-vuetify@2.0.5
info All dependencies
├─ interpret@1.2.0
├─ rechoir@0.6.2
├─ shelljs@0.8.4
└─ vue-cli-plugin-vuetify@2.0.5
✨ Done in 3.50s.
✔ Successfully installed plugin: vue-cli-plugin-vuetify
? Choose a preset: Default (recommended)
🚀 Invoking generator for vue-cli-plugin-vuetify...
📦 Installing additional dependencies...
yarn install v1.22.4
[1/4] 🔍 Resolving packages...
[2/4] 🚚 Fetching packages...
[3/4] 🔗 Linking dependencies...
[4/4] 🔨 Building fresh packages...
success Saved lockfile.
✨ Done in 3.91s.
⚓ Running completion hooks...
✔ Successfully invoked generator for plugin: vue-cli-plugin-vuetify
vuetify Discord community: https://community.vuetifyjs.com
vuetify Github: https://github.com/vuetifyjs/vuetify
vuetify Support Vuetify: https://github.com/sponsors/johnleider
$ pwd
/Users/walther/tmp/my-app
$ ls
README.md node_modules public vue.config.js
babel.config.js package.json src yarn.lock
$ yarn serve
yarn run v1.22.4
$ vue-cli-service serve
INFO Starting development server...
98% after emitting CopyPlugin
DONE Compiled successfully in 18495ms 7:09:16
App running at:
- Local: http://localhost:8080/
- Network: http://10.4.3.170:8080/
Note that the development build is not optimized.
To create a production build, run yarn build.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment