@forwardslashns/fws-cli
Version:
CLI meant to work together with other Forwardslash boilerplates.
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>