Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/zyyv/unplugin-vue-image

自动引入图片。Auto import images.
https://github.com/zyyv/unplugin-vue-image

plugin unplugin vite

Last synced: 2 months ago
JSON representation

自动引入图片。Auto import images.

Awesome Lists containing this project

README

        

# unplugin-vue-image

[![NPM version](https://img.shields.io/npm/v/unplugin-vue-image?color=a1b858&label=)](https://www.npmjs.com/package/unplugin-vue-image)

## Install

```bash
npm i unplugin-vue-image -D
```

Vite

```ts
// vite.config.ts
import Image from 'unplugin-vue-image/vite'

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

Example: [`playground/`](./playground/)


Rollup

```ts
// rollup.config.js
import Image from 'unplugin-vue-image/rollup'

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


Webpack

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


Nuxt

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

> This module works for both Nuxt 2 and [Nuxt Vite](https://github.com/nuxt/vite)


Vue CLI

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


## Usage

`unplugin-vue-image` 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
```

```vue
--- src/App.vue ---



```

## Credits
This plugin was inspired by [vite-plugin-vue-images](https://github.com/sampullman/vite-plugin-vue-images), it's an enhanced version of it.

## License

[MIT](./LICENSE)