master
ewall 7 years ago
parent b40172000e
commit 2b51ba5331

@ -4,43 +4,28 @@
<h2>Essential Links</h2> <h2>Essential Links</h2>
<ul> <ul>
<li> <li>
<a <a href="https://vuejs.org" target="_blank">
href="https://vuejs.org"
target="_blank"
>
Core Docs Core Docs
</a> </a>
</li> </li>
<li> <li>
<a <a href="https://forum.vuejs.org" target="_blank">
href="https://forum.vuejs.org"
target="_blank"
>
Forum Forum
</a> </a>
</li> </li>
<li> <li>
<a <a href="https://chat.vuejs.org" target="_blank">
href="https://chat.vuejs.org"
target="_blank"
>
Community Chat Community Chat
</a> </a>
</li> </li>
<li> <li>
<a <a href="https://twitter.com/vuejs" target="_blank">
href="https://twitter.com/vuejs"
target="_blank"
>
Twitter Twitter
</a> </a>
</li> </li>
<br> <br>
<li> <li>
<a <a href="http://vuejs-templates.github.io/webpack/" target="_blank">
href="http://vuejs-templates.github.io/webpack/"
target="_blank"
>
Docs for This Template Docs for This Template
</a> </a>
</li> </li>
@ -48,34 +33,22 @@
<h2>Ecosystem</h2> <h2>Ecosystem</h2>
<ul> <ul>
<li> <li>
<a <a href="http://router.vuejs.org/" target="_blank">
href="http://router.vuejs.org/"
target="_blank"
>
vue-router vue-router
</a> </a>
</li> </li>
<li> <li>
<a <a href="http://vuex.vuejs.org/" target="_blank">
href="http://vuex.vuejs.org/"
target="_blank"
>
vuex vuex
</a> </a>
</li> </li>
<li> <li>
<a <a href="http://vue-loader.vuejs.org/" target="_blank">
href="http://vue-loader.vuejs.org/"
target="_blank"
>
vue-loader vue-loader
</a> </a>
</li> </li>
<li> <li>
<a <a href="https://github.com/vuejs/awesome-vue" target="_blank">
href="https://github.com/vuejs/awesome-vue"
target="_blank"
>
awesome-vue awesome-vue
</a> </a>
</li> </li>
@ -84,30 +57,34 @@
</template> </template>
<script> <script>
export default { export default {
name: 'HelloWorld', name: "HelloWorld",
data () { data() {
return { return {
msg: 'Welcome to Your Vue.js App' msg: "Welcome to Your Vue.js App"
};
} }
} };
}
</script> </script>
<!-- Add "scoped" attribute to limit CSS to this component only --> <!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped> <style scoped>
h1, h2 { h1,
h2 {
font-weight: normal; font-weight: normal;
} }
ul {
ul {
list-style-type: none; list-style-type: none;
padding: 0; padding: 0;
} }
li {
li {
display: inline-block; display: inline-block;
margin: 0 10px; margin: 0 10px;
} }
a {
a {
color: #42b983; color: #42b983;
} }
</style> </style>

@ -5,8 +5,6 @@
</div> </div>
</template> </template>
<script> <script>
export default { export default {};
}
</script> </script>
<style scoped></style> <style scoped></style>
Loading…
Cancel
Save