You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
489 B
32 lines
489 B
<template>
|
|
<div id="app">
|
|
<router-view/>
|
|
</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;
|
|
}
|
|
body{
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
</style>
|