Advertisement
soden

Untitled

Mar 1st, 2024
682
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.24 KB | Source Code | 0 0
  1. <template>
  2.   <div>
  3.     <h1>{{ title }}</h1>
  4.     <p>{{ content }}</p>
  5.   </div>
  6. </template>
  7.  
  8. <script>
  9. export default {
  10.   data() {
  11.     return {
  12.       title: 'Judul Artikel',
  13.       content: 'Konten artikel.'
  14.     }
  15.   }
  16. }
  17. </script>
Tags: JavaScript
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement