You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
221 B

7 months ago
  1. import App from './App';
  2. import { createSSRApp } from 'vue';
  3. import { setupPinia } from './sheep/store';
  4. export function createApp() {
  5. const app = createSSRApp(App);
  6. setupPinia(app);
  7. return {
  8. app,
  9. };
  10. }