0.0.2 • Published 6 months ago

unplugin-vue-auto-img v0.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

unplugin-vue-auto-img

NPM version

Install

npm i unplugin-vue-auto-img -D
// vite.config.ts
import Image from 'unplugin-vue-auto-img/vite'

export default defineConfig({
  plugins: [
    Image({ /* options */ }),
  ],
})

Example: playground/

// rollup.config.js
import Image from 'unplugin-vue-auto-img/rollup'

export default {
  plugins: [
    Image({ /* options */ }),
  ],
}

// webpack.config.js
module.exports = {
  /* ... */
  plugins: [
    require('unplugin-vue-auto-img/webpack')({ /* options */ }),
  ],
}

// nuxt.config.js
export default {
  buildModules: [
    ['unplugin-vue-auto-img/nuxt', { /* options */ }],
  ],
}

This module works for both Nuxt 2 and Nuxt Vite

// vue.config.js
module.exports = {
  configureWebpack: {
    plugins: [
      require('unplugin-vue-auto-img/webpack')({ /* options */ }),
    ],
  },
}

Usage

unplugin-vue-auto-img auto import your image from assets/images by default to your Vue component.

You can only use image variables using camelCase.

--- aseets
  --- images
    --- logo.png
--- App.vue
--- src/App.vue ---
<template>
  <div>
    <img :src="Logo">
  </div>
</template>

License

MIT