Skip to content
Snippets Groups Projects
Commit 61833850 authored by Adam Procter's avatar Adam Procter
Browse files

updates

parent ef5449b7
Branches
No related tags found
No related merge requests found
module.exports = {
singleQuote: true,
semi: false,
}
# nodenogg.in (beta)
![image of the 2020 alpha interface](https://nodenogg.in/img/interface2020.png)
{
"include": [
"./src/**/*"
]
}
\ No newline at end of file
src/assets/interface2020.png

542 KiB

......@@ -43,8 +43,14 @@
<script>
export default {
name: "JoinMicrocosm"
};
name: 'JoinMicrocosm',
data: function() {
return {
name: ''
}
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
......
......@@ -36,8 +36,8 @@
<script>
export default {
name: "TellmeMore",
};
name: 'TellmeMore'
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
......
......@@ -8,8 +8,8 @@
<script>
export default {
name: "Credits",
};
name: 'Credits'
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
......
......@@ -21,22 +21,22 @@
<script>
// @ is an alias to /src
import JoinMicrocosm from "@/components/JoinMicrocosm.vue";
import TellmeMore from "@/components/TellmeMore.vue";
import JoinMicrocosm from '@/components/JoinMicrocosm.vue'
import TellmeMore from '@/components/TellmeMore.vue'
export default {
name: "Start",
name: 'Start',
components: {
JoinMicrocosm,
TellmeMore,
TellmeMore
},
data() {
return {
isStart: false,
isTellme: false,
};
},
};
isTellme: false
}
}
}
</script>
<style scoped>
......
{
"include": [
"./src/**/*"
],
"compilerOptions": {
"module": "es2015",
"moduleResolution": "node",
"target": "es5",
"sourceMap": true,
"allowJs": true
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment