Skip to content

Instantly share code, notes, and snippets.

@mitevpi
Created April 23, 2020 13:53
Show Gist options
  • Save mitevpi/199442e20cc7c623cfa252ab0971ce20 to your computer and use it in GitHub Desktop.
Save mitevpi/199442e20cc7c623cfa252ab0971ce20 to your computer and use it in GitHub Desktop.
Vue.js Get Local Images
mounted() {
const images = require.context("../assets/", false, /\.png$/);
const minuteRuleImage = new Image();
minuteRuleImage.src = images(`./90minrule.png`);
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment