atom-beautify/examples/nested-jsbeautifyrc/vue/original/test.vue

37 lines
447 B
Vue
Raw Normal View History

2016-08-15 11:33:06 -06:00
<template>
<base-view>
<div slot="page-body" class="row">
Your content here!
</div>
</base-view>
</template>
<script>
export default {
data: function() {
return {
text: 'Hello, world!'
}
}
}
</script>
<style lang="sass">
body
color: red
background-color: red
2016-08-15 11:33:06 -06:00
</style>
<style lang="scss">
nav {
ul {
margin: 0;
padding: 0;
}
li { display: inline-block; }
a {
display: block;
}
}
</style>