In this article we will learn:
- Foo
- Bar
- Baz
| @extends('layouts.app') | |
| @section('content') | |
| <div class="container"> | |
| <div class="card"> | |
| <div class="card-header"> | |
| Reset Password | |
| </div> | |
| <div class="card-block"> |
| /** | |
| * jQuery simpleUploader plugin | |
| * Base Backbone model, collection and views | |
| * Version: 1.0 | |
| * Dual licensed under the MIT and GPL licenses | |
| */ | |
| /* | |
| Simple Uploader |
| /* | |
| Download Table - jQuery plugin | |
| written by Nico Beta | |
| http://github.com/nicobeta | |
| Markup: | |
| <a href="#table" id="test" data-filename="clients">Download</a> |
| { | |
| "data": [ | |
| { | |
| "id": 2, | |
| "content": "My first post", | |
| "user_id": 1, | |
| "user": { | |
| "id": 1, | |
| "first_name": "John", | |
| "last_name": "Doe", |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Demo</title> | |
| </head> | |
| <body> | |
| <div id="app"> | |
| <ckeditor v-model="editorData" :config="editorConfig"></ckeditor> |
| // Warning: this is just a non-tested example, take it as an starting point draft :) | |
| import castArray from 'lodash/castArray' | |
| const state = reactive({ | |
| data: {}, | |
| token: '' | |
| }) | |
| const getCookieParams = () => { |
How would you write this code in options API?
<script setup>
defineProps({
msg: String,
})
</script>
<template>