1class HelloWorld extends Component
2{
3 public $message;
4 //initializing properties witht the property
5 public function mount()
6 {
7 $this->message = 'Hello World!';
8 }
9}
1class HelloWorld extends Component
2{
3 public $message;
4 //initializing properties witht the property
5 public function mount()
6 {
7 $this->message = 'Hello World!';
8 }
9}