[文档]
前端开发 - 前端开发实例
使用纯HTML静态页面开发
直接在 blade 页面中编写HTML代码即可,如下所示
@extends('modstart::layout.frame')
@section('pageTitle'){{'页面标题'}}@endsection
@section('body')
页面内容
@endsection
使用Vue非编译模式
在 blade 页面中编写 HTML 代码,然后使用 Vue 进行数据绑定,如下所示
@extends('modstart::layout.frame')
@section('pageTitle'){{'Vue非编译模式'}}@endsection
@section('bodyAppend...