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.

11 lines
222 B

2 years ago
  1. 'use strict';
  2. import app from '@/main';
  3. import page from '@/views/@entryname@';
  4. import store from "@/store";
  5. store.commit('changePage', '@pathname@');
  6. store['dispatch']('appInit', function () {
  7. app.mount(page);
  8. });