2 |
3 |
This is an about page
4 |
5 |
6 |
--------------------------------------------------------------------------------
/.babelrc.js:
--------------------------------------------------------------------------------
1 | /**
2 | * @author Harsh Gupta
3 | */
4 |
5 | module.exports = {
6 | presets: ['@vue/cli-plugin-babel/preset'],
7 | };
8 |
--------------------------------------------------------------------------------
/babel.config.js:
--------------------------------------------------------------------------------
1 | /**
2 | * @author Harsh Gupta
3 | */
4 |
5 | module.exports = {
6 | presets: ['@vue/cli-plugin-babel/preset'],
7 | };
8 |
--------------------------------------------------------------------------------
/src/model/Test.model.ts:
--------------------------------------------------------------------------------
1 | export interface Test {
2 | id: number;
3 | description: string;
4 | status: 'IDLE' | 'RUNNING' | 'SUCCESS' | 'FAILURE';
5 | }
6 |
--------------------------------------------------------------------------------
/postcss.config.js:
--------------------------------------------------------------------------------
1 | /**
2 | * @author Harsh Gupta
3 | */
4 |
5 | module.exports = {
6 | plugins: {
7 | tailwindcss: {},
8 | autoprefixer: {},
9 | },
10 | };
11 |
--------------------------------------------------------------------------------
/src/store/counter/counter.types.ts:
--------------------------------------------------------------------------------
1 | export enum ActionTypes {
2 | GET_COUNTER = 'GET_COUNTER',
3 | }
4 |
5 | export enum MutationTypes {
6 | SET_COUNTER = 'SET_COUNTER',
7 | }
8 |
--------------------------------------------------------------------------------
/src/shims-vue.d.ts:
--------------------------------------------------------------------------------
1 | /* eslint-disable */
2 | declare module '*.vue' {
3 | import type { DefineComponent } from 'vue'
4 | const component: DefineComponent<{}, {}, any>
5 | export default component
6 | }
7 |
--------------------------------------------------------------------------------
/src/views/Contact.vue:
--------------------------------------------------------------------------------
1 |