@fws/cli
Version:
This CLI is work in progress and it's meant to work together with other Forwardslash boilerplates. Please do not use it if you don't have access to other stuff.
25 lines (20 loc) • 380 B
Plain Text
<template>
<div class="<%= componentClass %>">
<h2>{{title}}</h2>
</div>
</template>
<script>
export default {
props: {
},
data() {
return {
title: 'This is title of "<%= componentName %>"!'
};
}
};
</script>
<style lang="scss" scoped>
.<%= componentClass %> {
}
</style>