Skip to content

Instantly share code, notes, and snippets.

@kongkx
kongkx / category.json
Last active June 19, 2022 01:46
Drupal Commerce Feed Demo
[
{
"id": "st001",
"name": "储物和收纳",
"url": "https://www.ikea.cn/cn/zh/cat/chu-wu-he-shou-na-st001/",
"globalImageUrl": "https://www.ikea.com/global/assets/navigation/images/storage-organisation-st001.jpeg",
"index": 0,
"plp": true,
"slug": "chu-wu-he-shou-na-st001",
"parentSlug": ""
@kongkx
kongkx / example.conf
Last active March 7, 2021 04:18
nginx reverse-proxy
server {
listen 80;
listen [::]:80 ;
server_name example.kongkx.com;
# root /var/www/example;
return 301 https://$host$request_uri;
}
server {
listen 443 ssl http2;
@kongkx
kongkx / v-model-example.vue
Last active December 9, 2020 14:13
vue v-model for custom component
<template>
<input @input="handleInput" />
</template>
<script>
export default {
props: ['value'],
data () {
return {
content: this.value