routie dev init since i didn't adhere to any proper guidance up until now
This commit is contained in:
+22
@@ -0,0 +1,22 @@
|
||||
/* eslint-disable local-rules/sort-imports */
|
||||
|
||||
// Styles
|
||||
import "./styles/main.css";
|
||||
|
||||
// Components
|
||||
import * as blueprints from "./blueprints/index.js";
|
||||
import * as components from "./components/index.js";
|
||||
import * as directives from "./directives/index.js";
|
||||
import { createVuetify as _createVuetify } from "./framework.js"; // Types
|
||||
export const createVuetify = (options = {}) => {
|
||||
return _createVuetify({
|
||||
components,
|
||||
directives,
|
||||
...options
|
||||
});
|
||||
};
|
||||
export const version = "4.0.6";
|
||||
createVuetify.version = version;
|
||||
export { blueprints, components, directives };
|
||||
export * from "./composables/index.js";
|
||||
//# sourceMappingURL=entry-bundler.js.map
|
||||
Reference in New Issue
Block a user