Skip to content

Commit 0343390

Browse files
committed
chore(demo): misc fixes
1 parent 4fe6154 commit 0343390

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

demo/quasar.conf.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,10 +106,9 @@ module.exports = function (ctx) {
106106

107107
chainWebpack (chain) {
108108
chain.resolve.alias.merge({
109-
'@quasar/quasar-ui-qiconpicker': path.resolve(__dirname, '../ui'),
110109
'ui': path.resolve(__dirname, '../ui/src/index.js'),
111-
'sass': path.resolve(__dirname, '../ui/src/index.sass'),
112-
'api': path.resolve(__dirname, '../ui/dist/api/QIconPicker.json')
110+
'@quasar/quasar-ui-qiconpicker': path.resolve(__dirname, '../ui'),
111+
'sass': path.resolve(__dirname, '../ui/src/index.sass')
113112
})
114113
}
115114
},

demo/src/pages/Index.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ This page created with [QMarkdown](https://quasarframework.github.io/app-extensi
2525
<script>
2626
import Hero from '../components/Hero'
2727
import markdown from '../markdown/iconpicker.md'
28-
import json from 'api'
28+
import Api from '@quasar/quasar-ui-qiconpicker/dist/api/QIconPicker.json'
2929
3030
export default {
3131
name: 'PageIndex',
@@ -37,7 +37,7 @@ export default {
3737
data () {
3838
return {
3939
markdown: markdown,
40-
json: json
40+
json: Api
4141
}
4242
},
4343

0 commit comments

Comments
 (0)