create-vue 1.0.1 → 2.0.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/LICENSE +21 -0
- package/README.md +11 -0
- package/outfile.cjs +5700 -0
- package/package.json +44 -30
- package/template/base/.vscode/extensions.json +3 -0
- package/template/base/_gitignore +27 -0
- package/template/base/index.html +13 -0
- package/template/base/package.json +19 -0
- package/template/base/public/favicon.ico +0 -0
- package/template/base/vite.config.js +25 -0
- package/template/code/default/cypress/integration/example.spec.js +8 -0
- package/template/code/default/src/App.vue +83 -0
- package/template/code/default/src/assets/base.css +74 -0
- package/template/code/default/src/assets/logo.svg +1 -0
- package/template/code/default/src/components/HelloWorld.vue +44 -0
- package/template/code/default/src/components/TheWelcome.vue +86 -0
- package/template/code/default/src/components/WelcomeItem.vue +86 -0
- package/template/code/default/src/components/__tests__/HelloWorld.spec.js +13 -0
- package/template/code/default/src/components/icons/IconCommunity.vue +7 -0
- package/template/code/default/src/components/icons/IconDocumentation.vue +7 -0
- package/template/code/default/src/components/icons/IconEcosystem.vue +7 -0
- package/template/code/default/src/components/icons/IconSupport.vue +7 -0
- package/template/code/default/src/components/icons/IconTooling.vue +19 -0
- package/template/code/router/cypress/integration/example.spec.js +13 -0
- package/template/code/router/src/App.vue +120 -0
- package/template/code/router/src/assets/base.css +74 -0
- package/template/code/router/src/assets/logo.svg +1 -0
- package/template/code/router/src/components/HelloWorld.vue +44 -0
- package/template/code/router/src/components/TheWelcome.vue +86 -0
- package/template/code/router/src/components/WelcomeItem.vue +86 -0
- package/template/code/router/src/components/__tests__/HelloWorld.spec.js +13 -0
- package/template/code/router/src/components/icons/IconCommunity.vue +7 -0
- package/template/code/router/src/components/icons/IconDocumentation.vue +7 -0
- package/template/code/router/src/components/icons/IconEcosystem.vue +7 -0
- package/template/code/router/src/components/icons/IconSupport.vue +7 -0
- package/template/code/router/src/components/icons/IconTooling.vue +19 -0
- package/template/code/router/src/router/index.js +27 -0
- package/template/code/router/src/views/AboutView.vue +15 -0
- package/template/code/router/src/views/HomeView.vue +9 -0
- package/template/code/typescript-default/cypress/integration/example.spec.ts +8 -0
- package/template/code/typescript-default/src/App.vue +83 -0
- package/template/code/typescript-default/src/assets/base.css +74 -0
- package/template/code/typescript-default/src/assets/logo.svg +1 -0
- package/template/code/typescript-default/src/components/HelloWorld.vue +41 -0
- package/template/code/typescript-default/src/components/TheWelcome.vue +86 -0
- package/template/code/typescript-default/src/components/WelcomeItem.vue +86 -0
- package/template/code/typescript-default/src/components/__tests__/HelloWorld.spec.ts +13 -0
- package/template/code/typescript-default/src/components/icons/IconCommunity.vue +7 -0
- package/template/code/typescript-default/src/components/icons/IconDocumentation.vue +7 -0
- package/template/code/typescript-default/src/components/icons/IconEcosystem.vue +7 -0
- package/template/code/typescript-default/src/components/icons/IconSupport.vue +7 -0
- package/template/code/typescript-default/src/components/icons/IconTooling.vue +19 -0
- package/template/code/typescript-router/cypress/integration/example.spec.ts +13 -0
- package/template/code/typescript-router/src/App.vue +120 -0
- package/template/code/typescript-router/src/assets/base.css +74 -0
- package/template/code/typescript-router/src/assets/logo.svg +1 -0
- package/template/code/typescript-router/src/components/HelloWorld.vue +41 -0
- package/template/code/typescript-router/src/components/TheWelcome.vue +86 -0
- package/template/code/typescript-router/src/components/WelcomeItem.vue +86 -0
- package/template/code/typescript-router/src/components/__tests__/HelloWorld.spec.ts +13 -0
- package/template/code/typescript-router/src/components/icons/IconCommunity.vue +7 -0
- package/template/code/typescript-router/src/components/icons/IconDocumentation.vue +7 -0
- package/template/code/typescript-router/src/components/icons/IconEcosystem.vue +7 -0
- package/template/code/typescript-router/src/components/icons/IconSupport.vue +7 -0
- package/template/code/typescript-router/src/components/icons/IconTooling.vue +19 -0
- package/template/code/typescript-router/src/router/index.ts +27 -0
- package/template/code/typescript-router/src/views/AboutView.vue +15 -0
- package/template/code/typescript-router/src/views/HomeView.vue +9 -0
- package/template/config/cypress/cypress/fixtures/example.json +5 -0
- package/template/config/cypress/cypress/jsconfig.json +8 -0
- package/template/config/cypress/cypress/plugins/index.js +28 -0
- package/template/config/cypress/cypress/support/commands.js +25 -0
- package/template/config/cypress/cypress/support/index.js +20 -0
- package/template/config/cypress/cypress.json +7 -0
- package/template/config/cypress/package.json +14 -0
- package/template/config/pinia/package.json +5 -0
- package/template/config/pinia/src/stores/counter.js +16 -0
- package/template/config/router/package.json +5 -0
- package/template/config/typescript/env.d.ts +16 -0
- package/template/config/typescript/package.json +11 -0
- package/template/config/typescript/tsconfig.json +24 -0
- package/template/entry/default/src/main.js +12 -0
- package/template/entry/pinia/src/main.js +15 -0
- package/template/entry/router/src/main.js +14 -0
- package/template/entry/router-and-pinia/src/main.js +17 -0
- package/src/config/index.js +0 -33
- package/src/main.js +0 -253
- package/src/render.js +0 -30
- package/yarn.lock +0 -1011
There are too many changes on this page to be displayed.
The amount of changes on this page would crash your brower.
You can still verify the content by downloading the package file manually.