mirror of
https://github.com/MarcZierle/photo-log-frontend.git
synced 2025-04-18 18:04:38 +00:00
fix linting errors
This commit is contained in:
parent
33f3b825bf
commit
d473d09a39
5
jsconfig.json
Normal file
5
jsconfig.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"include": [
|
||||||
|
"./src/**/*"
|
||||||
|
]
|
||||||
|
}
|
@ -2,11 +2,10 @@
|
|||||||
<div class="hello">
|
<div class="hello">
|
||||||
<h1>{{ msg }}</h1>
|
<h1>{{ msg }}</h1>
|
||||||
<p>
|
<p>
|
||||||
Check me out, BOY!
|
Check me out, BOY!!!
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
<n-button type="primary" @click="showModal = true">Open Modal</n-button>
|
||||||
<n-button type="primary" @click="showModal = true">Start Me up</n-button>
|
|
||||||
<n-modal
|
<n-modal
|
||||||
v-model:show="showModal"
|
v-model:show="showModal"
|
||||||
:mask-closable="false"
|
:mask-closable="false"
|
||||||
@ -26,7 +25,7 @@
|
|||||||
import { useMessage } from 'naive-ui'
|
import { useMessage } from 'naive-ui'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: "HelloWorld",
|
name: 'HelloWorld',
|
||||||
props: {
|
props: {
|
||||||
msg: String,
|
msg: String,
|
||||||
},
|
},
|
||||||
@ -45,9 +44,8 @@ export default {
|
|||||||
this.message.success('Cancel')
|
this.message.success('Cancel')
|
||||||
this.showModalRef = false
|
this.showModalRef = false
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
};
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
||||||
|
Loading…
Reference in New Issue
Block a user