parent
5cbd207df5
commit
2795c955a7
@ -0,0 +1,30 @@
|
||||
<template>
|
||||
<div id="app">
|
||||
<img src="./assets/logo.png">
|
||||
<div>
|
||||
<el-button @click="startHacking">Start</el-button>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
methods: {
|
||||
startHacking () {
|
||||
this.$notify({
|
||||
title: 'It works!',
|
||||
type: 'success',
|
||||
message: 'We\'ve laid the ground work for you. It\'s time for you to build something epic!',
|
||||
duration: 5000
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
#app {
|
||||
font-family: Helvetica, sans-serif;
|
||||
text-align: center;
|
||||
}
|
||||
</style>
|
@ -0,0 +1,30 @@
|
||||
<template>
|
||||
<div id="app">
|
||||
<img src="./assets/logo.png">
|
||||
<div>
|
||||
<el-button @click="startHacking">Start</el-button>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
methods: {
|
||||
startHacking () {
|
||||
this.$notify({
|
||||
title: 'It works!',
|
||||
type: 'success',
|
||||
message: 'We\'ve laid the ground work for you. It\'s time for you to build something epic!',
|
||||
duration: 5000
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
#app {
|
||||
font-family: Helvetica, sans-serif;
|
||||
text-align: center;
|
||||
}
|
||||
</style>
|
Loading…
Reference in new issue