Skip to content

Commit

Permalink
feat(app.vue): add a message saying i love you all
Browse files Browse the repository at this point in the history
  • Loading branch information
chenjiezi committed Nov 6, 2022
1 parent 07f4f64 commit 55770dd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/* eslint-env node */
require('@rushstack/eslint-patch/modern-module-resolution')
// require('@rushstack/eslint-patch/modern-module-resolution');

module.exports = {
root: true,
extends: [
'plugin:vue/vue3-essential',
'eslint:recommended',
'@vue/eslint-config-typescript',
'@vue/eslint-config-prettier',
// 'plugin:vue/vue3-essential',
// 'eslint:recommended',
// '@vue/eslint-config-typescript',
// '@vue/eslint-config-prettier',
'@antfu',
],
parserOptions: {
Expand Down
8 changes: 4 additions & 4 deletions src/App.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script setup lang="ts">
import HelloWorld from "./components/HelloWorld.vue";
import TheWelcome from "./components/TheWelcome.vue";
import HelloWorld from './components/HelloWorld.vue'
import TheWelcome from './components/TheWelcome.vue'
</script>

<template>
Expand All @@ -11,10 +11,10 @@ import TheWelcome from "./components/TheWelcome.vue";
src="./assets/logo.svg"
width="125"
height="125"
/>
>

<div class="wrapper">
<HelloWorld msg="You did it!" />
<HelloWorld msg="I Love You" />
</div>
</header>

Expand Down

0 comments on commit 55770dd

Please sign in to comment.