forked from jchomaz/Vulture
Tracking de l'application VApp (IHM du jeu)
This commit is contained in:
125
VApp/node_modules/vite-plugin-vuetify/README.md
generated
vendored
Normal file
125
VApp/node_modules/vite-plugin-vuetify/README.md
generated
vendored
Normal file
@@ -0,0 +1,125 @@
|
||||
# vite-plugin-vuetify
|
||||
|
||||
<div align="center">
|
||||
<a href="https://www.patreon.com/kaelwd">
|
||||
<img src="https://c5.patreon.com/external/logo/become_a_patron_button.png" alt="Become a Patron" />
|
||||
</a>
|
||||
<br>
|
||||
<a href="https://opencollective.com/vuetify">
|
||||
<img src="https://opencollective.com/static/images/become_sponsor.svg" alt="Donate to OpenCollective">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
## Automatic imports
|
||||
```js
|
||||
// vite.config.js
|
||||
plugins: [
|
||||
vue(),
|
||||
vuetify({ autoImport: true }), // Enabled by default
|
||||
]
|
||||
```
|
||||
```js
|
||||
// plugins/vuetify.js
|
||||
import 'vuetify/styles'
|
||||
import { createVuetify } from 'vuetify'
|
||||
|
||||
export default createVuetify()
|
||||
```
|
||||
|
||||
### Include labs components
|
||||
```js
|
||||
// vite.config.js
|
||||
plugins: [
|
||||
vue(),
|
||||
vuetify({
|
||||
autoImport: { labs: true }
|
||||
}),
|
||||
]
|
||||
```
|
||||
|
||||
### Ignoring components or directives
|
||||
```js
|
||||
// vite.config.js
|
||||
plugins: [
|
||||
vue(),
|
||||
vuetify({
|
||||
autoImport: {
|
||||
ignore: [
|
||||
'VAlert', // Component name
|
||||
'Ripple', // Directive name
|
||||
]
|
||||
}
|
||||
}),
|
||||
]
|
||||
```
|
||||
Note `ignore` values are case-sensitive
|
||||
|
||||
## Style loading
|
||||
### Customising variables
|
||||
```js
|
||||
// vite.config.js
|
||||
plugins: [
|
||||
vue(),
|
||||
vuetify({ styles: { configFile: 'src/settings.scss' } }),
|
||||
]
|
||||
```
|
||||
```js
|
||||
// plugins/vuetify.js
|
||||
import 'vuetify/styles'
|
||||
import { createVuetify } from 'vuetify'
|
||||
|
||||
export default createVuetify()
|
||||
```
|
||||
```scss
|
||||
// settings.scss
|
||||
@use 'vuetify/settings' with (
|
||||
$color-pack: false,
|
||||
$utilities: false,
|
||||
);
|
||||
```
|
||||
|
||||
`settings.scss` can be used in your own components to access vuetify's variables.
|
||||
|
||||
### Remove all style imports
|
||||
```js
|
||||
// vite.config.js
|
||||
plugins: [
|
||||
vue(),
|
||||
vuetify({ styles: 'none' }),
|
||||
]
|
||||
```
|
||||
```js
|
||||
// plugins/vuetify.js
|
||||
import { createVuetify } from 'vuetify'
|
||||
|
||||
export default createVuetify()
|
||||
```
|
||||
|
||||
### Import sass from source
|
||||
Vuetify 3 uses precompiled css by default, these imports can optionally be modified to point to sass files instead:
|
||||
|
||||
```js
|
||||
// vite.config.js
|
||||
plugins: [
|
||||
vue(),
|
||||
vuetify({ styles: 'sass' }),
|
||||
]
|
||||
```
|
||||
|
||||
## Image loading
|
||||
|
||||
https://github.com/vitejs/vite-plugin-vue/blob/main/packages/plugin-vue/README.md#asset-url-handling
|
||||
|
||||
```js
|
||||
// vite.config.js
|
||||
import vuetify, { transformAssetUrls } from 'vite-plugin-vuetify'
|
||||
|
||||
export default {
|
||||
plugins: [
|
||||
vue({
|
||||
template: { transformAssetUrls }
|
||||
}),
|
||||
vuetify(),
|
||||
],
|
||||
}
|
||||
```
|
||||
Reference in New Issue
Block a user