mirror of
https://github.com/zadam/trilium.git
synced 2025-11-07 05:46:10 +01:00
48 lines
592 B
Vue
48 lines
592 B
Vue
<template>
|
|
<div id="app">
|
|
<h2>Tree</h2>
|
|
|
|
<demo></demo>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'app',
|
|
data () {
|
|
return {
|
|
msg: 'Welcome to Your Vue.js App'
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
#app {
|
|
font-family: 'Avenir', Helvetica, Arial, sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
text-align: center;
|
|
color: #2c3e50;
|
|
margin-top: 60px;
|
|
}
|
|
|
|
h1, h2 {
|
|
font-weight: normal;
|
|
}
|
|
|
|
ul {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
}
|
|
|
|
li {
|
|
display: inline-block;
|
|
margin: 0 10px;
|
|
}
|
|
|
|
a {
|
|
color: #42b983;
|
|
}
|
|
</style>
|