Skip to content

Commit a22bbec

Browse files
init
0 parents  commit a22bbec

24 files changed

+11766
-0
lines changed

.browserslistrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
> 1%
2+
last 2 versions
3+
not dead

.editorconfig

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[*.{js,jsx,ts,tsx,vue}]
2+
indent_style = space
3+
indent_size = 2
4+
end_of_line = lf
5+
trim_trailing_whitespace = true
6+
insert_final_newline = true
7+
max_line_length = 100

.eslintrc.js

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
module.exports = {
2+
root: true,
3+
env: {
4+
node: true,
5+
},
6+
extends: [
7+
'plugin:vue/vue3-essential',
8+
'@vue/airbnb',
9+
'@vue/typescript/recommended',
10+
],
11+
parserOptions: {
12+
ecmaVersion: 2020,
13+
},
14+
rules: {
15+
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
16+
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
17+
},
18+
overrides: [
19+
{
20+
files: [
21+
'**/__tests__/*.{j,t}s?(x)',
22+
'**/tests/unit/**/*.spec.{j,t}s?(x)',
23+
],
24+
env: {
25+
jest: true,
26+
},
27+
},
28+
],
29+
};

.gitignore

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
.DS_Store
2+
node_modules
3+
/dist
4+
5+
/tests/e2e/videos/
6+
/tests/e2e/screenshots/
7+
8+
9+
# local env files
10+
.env.local
11+
.env.*.local
12+
13+
# Log files
14+
npm-debug.log*
15+
yarn-debug.log*
16+
yarn-error.log*
17+
pnpm-debug.log*
18+
19+
# Editor directories and files
20+
.idea
21+
.vscode
22+
*.suo
23+
*.ntvs*
24+
*.njsproj
25+
*.sln
26+
*.sw?

README.md

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# vue-hooks-form2
2+
3+
## Project setup
4+
```
5+
yarn install
6+
```
7+
8+
### Compiles and hot-reloads for development
9+
```
10+
yarn serve
11+
```
12+
13+
### Compiles and minifies for production
14+
```
15+
yarn build
16+
```
17+
18+
### Run your unit tests
19+
```
20+
yarn test:unit
21+
```
22+
23+
### Run your end-to-end tests
24+
```
25+
yarn test:e2e
26+
```
27+
28+
### Lints and fixes files
29+
```
30+
yarn lint
31+
```
32+
33+
### Customize configuration
34+
See [Configuration Reference](https://cli.vuejs.org/config/).

babel.config.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
presets: [
3+
'@vue/cli-plugin-babel/preset',
4+
],
5+
};

cypress.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"pluginsFile": "tests/e2e/plugins/index.js"
3+
}

jest.config.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
module.exports = {
2+
preset: '@vue/cli-plugin-unit-jest/presets/typescript-and-babel',
3+
transform: {
4+
'^.+\\.vue$': 'vue-jest',
5+
},
6+
};

package.json

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"name": "vue-hooks-form2",
3+
"version": "0.1.0",
4+
"private": true,
5+
"scripts": {
6+
"serve": "vue-cli-service serve",
7+
"build": "vue-cli-service build",
8+
"test:unit": "vue-cli-service test:unit",
9+
"test:e2e": "vue-cli-service test:e2e",
10+
"lint": "vue-cli-service lint"
11+
},
12+
"dependencies": {
13+
"core-js": "^3.6.5",
14+
"vue": "^3.0.0-0"
15+
},
16+
"devDependencies": {
17+
"@types/jest": "^24.0.19",
18+
"@typescript-eslint/eslint-plugin": "^2.33.0",
19+
"@typescript-eslint/parser": "^2.33.0",
20+
"@vue/cli-plugin-babel": "~4.5.0",
21+
"@vue/cli-plugin-e2e-cypress": "~4.5.0",
22+
"@vue/cli-plugin-eslint": "~4.5.0",
23+
"@vue/cli-plugin-typescript": "~4.5.0",
24+
"@vue/cli-plugin-unit-jest": "~4.5.0",
25+
"@vue/cli-service": "~4.5.0",
26+
"@vue/compiler-sfc": "^3.0.0-0",
27+
"@vue/eslint-config-airbnb": "^5.0.2",
28+
"@vue/eslint-config-typescript": "^5.0.2",
29+
"@vue/test-utils": "^2.0.0-0",
30+
"eslint": "^6.7.2",
31+
"eslint-plugin-import": "^2.20.2",
32+
"eslint-plugin-vue": "^7.0.0-0",
33+
"typescript": "~3.9.3",
34+
"vue-jest": "^5.0.0-0"
35+
}
36+
}

public/favicon.ico

4.19 KB
Binary file not shown.

public/index.html

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width,initial-scale=1.0">
7+
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
8+
<title><%= htmlWebpackPlugin.options.title %></title>
9+
</head>
10+
<body>
11+
<noscript>
12+
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
13+
</noscript>
14+
<div id="app"></div>
15+
<!-- built files will be auto injected -->
16+
</body>
17+
</html>

src/App.vue

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<template>
2+
<div id="app">
3+
<img alt="Vue logo" src="./assets/logo.png">
4+
<HelloWorld msg="Welcome to Your Vue.js + TypeScript App"/>
5+
</div>
6+
</template>
7+
8+
<script lang="ts">
9+
import { defineComponent } from 'vue';
10+
import HelloWorld from './components/HelloWorld.vue';
11+
12+
export default defineComponent({
13+
name: 'App',
14+
components: {
15+
HelloWorld,
16+
},
17+
});
18+
</script>
19+
20+
<style>
21+
#app {
22+
font-family: Avenir, Helvetica, Arial, sans-serif;
23+
-webkit-font-smoothing: antialiased;
24+
-moz-osx-font-smoothing: grayscale;
25+
text-align: center;
26+
color: #2c3e50;
27+
margin-top: 60px;
28+
}
29+
</style>

src/assets/logo.png

6.69 KB
Loading

src/components/HelloWorld.vue

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
<template>
2+
<div class="hello">
3+
<h1>{{ msg }}</h1>
4+
<p>
5+
For a guide and recipes on how to configure / customize this project,<br>
6+
check out the
7+
<a href="https://cli.vuejs.org" target="_blank" rel="noopener">vue-cli documentation</a>.
8+
</p>
9+
<h3>Installed CLI Plugins</h3>
10+
<ul>
11+
<li><a href="https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-babel" target="_blank" rel="noopener">babel</a></li>
12+
<li><a href="https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-typescript" target="_blank" rel="noopener">typescript</a></li>
13+
<li><a href="https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-eslint" target="_blank" rel="noopener">eslint</a></li>
14+
<li><a href="https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-unit-jest" target="_blank" rel="noopener">unit-jest</a></li>
15+
<li><a href="https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-e2e-cypress" target="_blank" rel="noopener">e2e-cypress</a></li>
16+
</ul>
17+
<h3>Essential Links</h3>
18+
<ul>
19+
<li><a href="https://vuejs.org" target="_blank" rel="noopener">Core Docs</a></li>
20+
<li><a href="https://forum.vuejs.org" target="_blank" rel="noopener">Forum</a></li>
21+
<li><a href="https://chat.vuejs.org" target="_blank" rel="noopener">Community Chat</a></li>
22+
<li><a href="https://twitter.com/vuejs" target="_blank" rel="noopener">Twitter</a></li>
23+
<li><a href="https://news.vuejs.org" target="_blank" rel="noopener">News</a></li>
24+
</ul>
25+
<h3>Ecosystem</h3>
26+
<ul>
27+
<li><a href="https://router.vuejs.org" target="_blank" rel="noopener">vue-router</a></li>
28+
<li><a href="https://vuex.vuejs.org" target="_blank" rel="noopener">vuex</a></li>
29+
<li><a href="https://github.com/vuejs/vue-devtools#vue-devtools" target="_blank" rel="noopener">vue-devtools</a></li>
30+
<li><a href="https://vue-loader.vuejs.org" target="_blank" rel="noopener">vue-loader</a></li>
31+
<li><a href="https://github.com/vuejs/awesome-vue" target="_blank" rel="noopener">awesome-vue</a></li>
32+
</ul>
33+
</div>
34+
</template>
35+
36+
<script lang="ts">
37+
import { defineComponent } from 'vue';
38+
39+
export default defineComponent({
40+
name: 'HelloWorld',
41+
props: {
42+
msg: String,
43+
},
44+
});
45+
</script>
46+
47+
<!-- Add "scoped" attribute to limit CSS to this component only -->
48+
<style scoped>
49+
h3 {
50+
margin: 40px 0 0;
51+
}
52+
ul {
53+
list-style-type: none;
54+
padding: 0;
55+
}
56+
li {
57+
display: inline-block;
58+
margin: 0 10px;
59+
}
60+
a {
61+
color: #42b983;
62+
}
63+
</style>

src/main.ts

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import { createApp } from 'vue';
2+
import App from './App.vue';
3+
4+
createApp(App).mount('#app');

src/shims-vue.d.ts

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
declare module '*.vue' {
2+
import { defineComponent } from 'vue';
3+
4+
const component: ReturnType<typeof defineComponent>;
5+
export default component;
6+
}

tests/e2e/.eslintrc.js

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
module.exports = {
2+
plugins: [
3+
'cypress',
4+
],
5+
env: {
6+
mocha: true,
7+
'cypress/globals': true,
8+
},
9+
rules: {
10+
strict: 'off',
11+
},
12+
};

tests/e2e/plugins/index.js

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
/* eslint-disable arrow-body-style */
2+
// https://docs.cypress.io/guides/guides/plugins-guide.html
3+
4+
// if you need a custom webpack configuration you can uncomment the following import
5+
// and then use the `file:preprocessor` event
6+
// as explained in the cypress docs
7+
// https://docs.cypress.io/api/plugins/preprocessors-api.html#Examples
8+
9+
// /* eslint-disable import/no-extraneous-dependencies, global-require */
10+
// const webpack = require('@cypress/webpack-preprocessor')
11+
12+
module.exports = (on, config) => {
13+
// on('file:preprocessor', webpack({
14+
// webpackOptions: require('@vue/cli-service/webpack.config'),
15+
// watchOptions: {}
16+
// }))
17+
18+
return {
19+
...config,
20+
fixturesFolder: 'tests/e2e/fixtures',
21+
integrationFolder: 'tests/e2e/specs',
22+
screenshotsFolder: 'tests/e2e/screenshots',
23+
videosFolder: 'tests/e2e/videos',
24+
supportFile: 'tests/e2e/support/index.js',
25+
};
26+
};

tests/e2e/specs/test.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// https://docs.cypress.io/api/introduction/api.html
2+
3+
describe('My First Test', () => {
4+
it('Visits the app root url', () => {
5+
cy.visit('/');
6+
cy.contains('h1', 'Welcome to Your Vue.js + TypeScript App');
7+
});
8+
});

tests/e2e/support/commands.js

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
// ***********************************************
2+
// This example commands.js shows you how to
3+
// create various custom commands and overwrite
4+
// existing commands.
5+
//
6+
// For more comprehensive examples of custom
7+
// commands please read more here:
8+
// https://on.cypress.io/custom-commands
9+
// ***********************************************
10+
//
11+
//
12+
// -- This is a parent command --
13+
// Cypress.Commands.add("login", (email, password) => { ... })
14+
//
15+
//
16+
// -- This is a child command --
17+
// Cypress.Commands.add("drag", { prevSubject: 'element'}, (subject, options) => { ... })
18+
//
19+
//
20+
// -- This is a dual command --
21+
// Cypress.Commands.add("dismiss", { prevSubject: 'optional'}, (subject, options) => { ... })
22+
//
23+
//
24+
// -- This is will overwrite an existing command --
25+
// Cypress.Commands.overwrite("visit", (originalFn, url, options) => { ... })

tests/e2e/support/index.js

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// ***********************************************************
2+
// This example support/index.js is processed and
3+
// loaded automatically before your test files.
4+
//
5+
// This is a great place to put global configuration and
6+
// behavior that modifies Cypress.
7+
//
8+
// You can change the location of this file or turn off
9+
// automatically serving support files with the
10+
// 'supportFile' configuration option.
11+
//
12+
// You can read more here:
13+
// https://on.cypress.io/configuration
14+
// ***********************************************************
15+
16+
// Import commands.js using ES2015 syntax:
17+
import './commands';
18+
19+
// Alternatively you can use CommonJS syntax:
20+
// require('./commands')

tests/unit/example.spec.ts

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import { shallowMount } from '@vue/test-utils';
2+
import HelloWorld from '@/components/HelloWorld.vue';
3+
4+
describe('HelloWorld.vue', () => {
5+
it('renders props.msg when passed', () => {
6+
const msg = 'new message';
7+
const wrapper = shallowMount(HelloWorld, {
8+
props: { msg },
9+
});
10+
expect(wrapper.text()).toMatch(msg);
11+
});
12+
});

0 commit comments

Comments
 (0)