LoginSignup
1
1

More than 5 years have passed since last update.

Sugar.js を Vue.js アプリケーションで使用する

Posted at

Original: Sugar.js を Vue.js で使用する | tail -f pinzo.log

諸事情があって Vue.js のアプリケーションで Sugar - A Javascript utility library for working with native objects. を利用することにしたので導入のメモ。

アプリケーションは vue-cli を使って作成したもの。

インストール

$ npm install sugar --save

ロード

main.js でロードし Extended mode で使用する。

import Vue from 'vue'
import Sugar from 'sugar'

Sugar.extend()

ja ロケールのロード

デフォルトでは en ロケールしか利用できないので ja ロケールを設定する。

import Vue from 'vue'
import Sugar from 'sugar'

Sugar.extend()
require('sugar/locales/ja')
Date.setLocale('ja')
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1