[Vuejs]-How to load all image files from a directory path supplied as a props to a vuejs component?

0👍

Usage:

  • for string constant
<Gallery loc="./page1/assets/" />
  • with variable
// in the data section
const location = './page1/assets/'
// in the template section
<Gallery :loc="location" />

Let me know if that’s the fix

Leave a comment