hl-core 0.0.9-beta.13 → 0.0.9-beta.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/plugins/vuetifyPlugin.ts +2 -0
package/package.json
CHANGED
package/plugins/vuetifyPlugin.ts
CHANGED
|
@@ -4,12 +4,14 @@ import 'vuetify/styles';
|
|
|
4
4
|
import { createVuetify } from 'vuetify';
|
|
5
5
|
import * as components from 'vuetify/components';
|
|
6
6
|
import * as directives from 'vuetify/directives';
|
|
7
|
+
import { VDataTable } from 'vuetify/labs/VDataTable';
|
|
7
8
|
|
|
8
9
|
export default defineNuxtPlugin(nuxtApp => {
|
|
9
10
|
const vuetify = createVuetify({
|
|
10
11
|
ssr: false,
|
|
11
12
|
components: {
|
|
12
13
|
...components,
|
|
14
|
+
VDataTable,
|
|
13
15
|
},
|
|
14
16
|
directives,
|
|
15
17
|
defaults: {
|