Skip to content

Commit

Permalink
SQL Tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
astechedu committed Feb 9, 2024
1 parent 190f2d9 commit efcbaa0
Showing 1 changed file with 61 additions and 0 deletions.
61 changes: 61 additions & 0 deletions sqlphp/developer-notes/php/corephp/Js.on.php.page.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
<<<<< Js (VueJs or RectJs) On PHP Pages >>>>>>


--------------------------------------------------------
--------------------------------------------------------

Keys: VueJs on php page,

--------------------------------------------------------
--------------------------------------------------------


//Vue Js on PHP page
https://youtu.be/XnlA8OCW3ec?t=392

--------------------------------------------------------
--------------------------------------------------------

--------------------------------------------------------
--------------------------------------------------------



----> VueJs on php page <----


<body>
<div id="app" class="content" align="center">
<h1>Hello From PHP File</h1>
<h3>{{ title }}</h3>
<ul>
<li v-for="{name,index} in names" :key="index">
{{name}}
</li>
</ul>
</div>
<script src="https://unpgk.com/vue@next"></script>

<script>
const TestApp = {
data(){
return {
title: "Hellow From Vuejs 3",
names: [
'Roger',
'Mark',
'Manu',
'Andrew'
],
}
}

}
</script>

</body>




-----x-----

0 comments on commit efcbaa0

Please sign in to comment.