-
nginx 1.16.0
-
mysql 5.7.26
-
php 7.2.19
- extensions
- Pcntl PHP Extension
- extensions
-
BCMath PHP Extension
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div class="bg-gray-100"> | |
<div style="width: 640px; height: 480px;"> | |
<carousel> | |
<img src="https://placeimg.com/640/480/any?1"> | |
<img src="https://placeimg.com/640/480/any?2"> | |
<img src="https://placeimg.com/640/480/any?3"> | |
<img src="https://placeimg.com/640/480/any?4"> | |
<img src="https://placeimg.com/640/480/any?5"> | |
</carousel> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div class="flex flex-col md:flex-row items-center justify-center min-h-screen bg-gray-100" style="padding-top: 1000px; padding-bottom: 500px;"> | |
<div class="mx-0 md:mx-2 my-4 md:my-0 px-12 py-5 rounded-lg text-white text-2xl shadow bg-blue-500 hover:bg-blue-600"> | |
<count :to="119"></count> | |
</div> | |
<div class="mx-0 md:mx-2 my-4 md:my-0 px-12 py-5 rounded-lg text-white text-2xl shadow bg-purple-500 hover:bg-purple-600"> | |
<count :to="1119"></count> | |
</div> | |
<div class="mx-0 md:mx-2 my-4 md:my-0 px-12 py-5 rounded-lg text-white text-2xl shadow bg-green-500 hover:bg-green-600"> | |
<count :to="351"></count> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .gitignore_global | |
#################################### | |
######## OS generated files ######## | |
#################################### | |
.DS_Store | |
.DS_Store? | |
*.swp | |
._* | |
.Spotlight-V100 | |
.Trashes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul class="pagination"> | |
<!-- Previous Page Link --> | |
@if ($paginator->onFirstPage()) | |
<li class="disabled"><span>«</span></li> | |
@else | |
<li><a href="{{ $paginator->previousPageUrl() }}" rel="prev">«</a></li> | |
@endif | |
<!-- Pagination Elements --> | |
@foreach ($elements as $element) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
安装方法查看评论 |
tailwindCss项目参考地址:https://tailwindcss.com/docs/installation
composer require laravel-frontend-presets/tailwindcss
php artisan preset tailwindcss
yarn install && yarn run dev && yarn run dev
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Card</title> | |
<link href="https://cdn.bootcss.com/tailwindcss/0.7.0/tailwind.min.css" rel="stylesheet"> | |
<link href="https://cdn.bootcss.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"> | |
<style> | |
html,body { |