mirror of
https://github.com/MarcZierle/photo-log-frontend.git
synced 2025-04-04 11:44:37 +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/**/*"
|
||||
]
|
||||
}
|
@ -1,69 +1,67 @@
|
||||
<template>
|
||||
<div class="hello">
|
||||
<h1>{{ msg }}</h1>
|
||||
<p>
|
||||
Check me out, BOY!
|
||||
</p>
|
||||
<h1>{{ msg }}</h1>
|
||||
<p>
|
||||
Check me out, BOY!!!
|
||||
</p>
|
||||
|
||||
|
||||
<n-button type="primary" @click="showModal = true">Start Me up</n-button>
|
||||
<n-modal
|
||||
v-model:show="showModal"
|
||||
:mask-closable="false"
|
||||
preset="dialog"
|
||||
title="Dialog"
|
||||
content="Are you sure?"
|
||||
positive-text="Confirm"
|
||||
@positive-click="onPositiveClick"
|
||||
@negative-click="onNegativeClick"
|
||||
negative-text="Cancel"
|
||||
/>
|
||||
<n-button type="primary" @click="showModal = true">Open Modal</n-button>
|
||||
<n-modal
|
||||
v-model:show="showModal"
|
||||
:mask-closable="false"
|
||||
preset="dialog"
|
||||
title="Dialog"
|
||||
content="Are you sure?"
|
||||
positive-text="Confirm"
|
||||
@positive-click="onPositiveClick"
|
||||
@negative-click="onNegativeClick"
|
||||
negative-text="Cancel"
|
||||
/>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { useMessage } from 'naive-ui'
|
||||
|
||||
export default {
|
||||
name: "HelloWorld",
|
||||
props: {
|
||||
msg: String,
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
message: useMessage(),
|
||||
showModal: false
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
onPositiveClick () {
|
||||
this.message.success('Submit')
|
||||
this.showModal = false
|
||||
},
|
||||
onNegativeClick () {
|
||||
this.message.success('Cancel')
|
||||
this.showModalRef = false
|
||||
}
|
||||
|
||||
}
|
||||
};
|
||||
name: 'HelloWorld',
|
||||
props: {
|
||||
msg: String,
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
message: useMessage(),
|
||||
showModal: false
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
onPositiveClick () {
|
||||
this.message.success('Submit')
|
||||
this.showModal = false
|
||||
},
|
||||
onNegativeClick () {
|
||||
this.message.success('Cancel')
|
||||
this.showModalRef = false
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
||||
<style scoped lang="scss">
|
||||
h3 {
|
||||
margin: 40px 0 0;
|
||||
margin: 40px 0 0;
|
||||
}
|
||||
ul {
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
padding: 0;
|
||||
}
|
||||
li {
|
||||
display: inline-block;
|
||||
margin: 0 10px;
|
||||
display: inline-block;
|
||||
margin: 0 10px;
|
||||
}
|
||||
a {
|
||||
color: #42b983;
|
||||
color: #42b983;
|
||||
}
|
||||
</style>
|
||||
|
Loading…
Reference in New Issue
Block a user