create-packer 1.10.1 → 1.10.2

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-packer",
3
- "version": "1.10.1",
3
+ "version": "1.10.2",
4
4
  "main": "index.js",
5
5
  "repository": "https://github.com/kevily/create-packer",
6
6
  "author": "1k <bug_zero@163.com>",
@@ -0,0 +1,2 @@
1
+ export { default } from './View'
2
+ export * as LayoutTypes from './typings'
@@ -1,7 +1,7 @@
1
- import './home.css'
1
+ import './Home.css'
2
2
 
3
- function App() {
3
+ function Home() {
4
4
  return <div className={'flex justify-center items-center'}>sdfs</div>
5
5
  }
6
6
 
7
- export default App
7
+ export default Home
@@ -0,0 +1 @@
1
+ export { default } from './View'
@@ -1,5 +1,5 @@
1
1
  import type { FunctionComponent } from 'react'
2
- import Home from '@/pages/home'
2
+ import Home from '@/pages/Home'
3
3
 
4
4
  export interface routeType {
5
5
  path: string
@@ -0,0 +1 @@
1
+ export { default } from './View.vue'
@@ -1,5 +1,5 @@
1
1
  import { createRouter, createWebHashHistory, RouteRecordRaw } from 'vue-router'
2
- import Home from '@/pages/Home.vue'
2
+ import Home from '@/pages/Home'
3
3
 
4
4
  const routes: RouteRecordRaw[] = [{ path: '/', component: Home }]
5
5