- We've got some components
A
,B
andC
which provide different slots.const A = { template: `<div><slot name="a">Default A Content</slot></div>` }
const B = {
" Vim syntax file | |
" Language: HTML (version 5) | |
" Maintainer: Rodrigo Machado <[email protected]> | |
" URL: http://rm.blog.br/vim/syntax/html.vim | |
" Last Change: 2009 Aug 19 | |
" License: Public domain | |
" (but let me know if you liked it :) ) | |
" | |
" Note: This file just adds the new tags from HTML 5 | |
" and don't replace default html.vim syntax file |
<?php | |
/** | |
* This is a better Psysh rc.php | |
*/ | |
$add_composer_autoloader = function(array $config) { | |
static $was_run = false; | |
if ($was_run) { | |
return $config; |
#!/bin/sh | |
# An example hook script to verify what is about to be pushed to master. Called | |
# by "git push" after it has checked the remote status, but before anything has | |
# been pushed. If this script exits with a non-zero status nothing will be | |
# pushed. | |
# | |
# This hook is called with the following parameters: | |
# | |
# $1 -- Name of the remote to which the push is being done |