how set stye in component inline in vue

<template>
  <div>
    <!-- Your component template goes here -->
  </div>
</template>

<script>
export default {
  // Your component options go here
}
</script>

<style scoped>
/ Your global styles go here /

/ Inline styles for the component /
div {
  color: red;
  font-size: 16px;
  margin: 10px;
}
</style>