Vue

by javad ebrahimi

HTML

<div id="app">
  <test></test>
</div>

CSS

body {
  background: #20262E;
  padding: 20px;
  font-family: Helvetica;
}

#app {
  background: #fff;
  border-radius: 4px;
  padding: 20px;
  transition: all 0.2s;
}

Vue

const customComponent={
name:"test",
props:{
isActive:{
type:Boolean,
default:true
}
},
template:"<div v-if='isActive'>الان داره منو نشون میده . . . :D</div>"
}

new Vue({
  el: "#app",
  components:[customComponent],
  methods: {

  }
})