mirror of
https://github.com/em-squared/5e-drs.git
synced 2025-12-17 07:30:47 +00:00
search autocomplete
This commit is contained in:
parent
d47ad5e88d
commit
eccc40a123
15 changed files with 1094 additions and 9924 deletions
25
docs/.vuepress/theme/enhanceApp.js
Normal file
25
docs/.vuepress/theme/enhanceApp.js
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
import Vuex from 'vuex'
|
||||
import store from '../store'
|
||||
import '@mdi/font/css/materialdesignicons.css'
|
||||
import Vuetify from 'vuetify'
|
||||
import 'vuetify/dist/vuetify.min.css'
|
||||
|
||||
import colors from 'vuetify/es5/util/colors'
|
||||
|
||||
export default ({
|
||||
Vue,
|
||||
options,
|
||||
router,
|
||||
siteData
|
||||
}) => {
|
||||
Vue.use(Vuex)
|
||||
Vue.mixin({ store: store })
|
||||
Vue.use(Vuetify)
|
||||
options.vuetify = new Vuetify({
|
||||
theme: {
|
||||
// primary: colors.red.darken1, // #E53935
|
||||
// secondary: colors.red.lighten4, // #FFCDD2
|
||||
// accent: colors.indigo.base // #3F51B5
|
||||
}
|
||||
})
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue