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

updates

parent ef5449b7
No related branches found
No related tags found
No related merge requests found
module.exports = {
singleQuote: true,
semi: false,
}
# nodenogg.in (beta) # 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 @@ ...@@ -43,8 +43,14 @@
<script> <script>
export default { export default {
name: "JoinMicrocosm" name: 'JoinMicrocosm',
};
data: function() {
return {
name: ''
}
}
}
</script> </script>
<!-- Add "scoped" attribute to limit CSS to this component only --> <!-- Add "scoped" attribute to limit CSS to this component only -->
......
...@@ -36,8 +36,8 @@ ...@@ -36,8 +36,8 @@
<script> <script>
export default { export default {
name: "TellmeMore", name: 'TellmeMore'
}; }
</script> </script>
<!-- Add "scoped" attribute to limit CSS to this component only --> <!-- Add "scoped" attribute to limit CSS to this component only -->
......
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
<script> <script>
export default { export default {
name: "Credits", name: 'Credits'
}; }
</script> </script>
<!-- Add "scoped" attribute to limit CSS to this component only --> <!-- Add "scoped" attribute to limit CSS to this component only -->
......
...@@ -21,22 +21,22 @@ ...@@ -21,22 +21,22 @@
<script> <script>
// @ is an alias to /src // @ is an alias to /src
import JoinMicrocosm from "@/components/JoinMicrocosm.vue"; import JoinMicrocosm from '@/components/JoinMicrocosm.vue'
import TellmeMore from "@/components/TellmeMore.vue"; import TellmeMore from '@/components/TellmeMore.vue'
export default { export default {
name: "Start", name: 'Start',
components: { components: {
JoinMicrocosm, JoinMicrocosm,
TellmeMore, TellmeMore
}, },
data() { data() {
return { return {
isStart: false, isStart: false,
isTellme: false, isTellme: false
}; }
}, }
}; }
</script> </script>
<style scoped> <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