mirror of
https://github.com/creativetimofficial/vue-material-kit.git
synced 2025-05-23 21:04:21 +08:00
8 lines
192 B
JavaScript
8 lines
192 B
JavaScript
import { defineStore } from "pinia";
|
|
import bootstrap from "bootstrap/dist/js/bootstrap.min.js";
|
|
export const useAppStore = defineStore("storeId", {
|
|
state: () => ({
|
|
bootstrap,
|
|
}),
|
|
});
|